Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
AW: AW: AW: AW: AW: [geclipse-dev] CA certificate loading

> I am trying to test it right now... How do you get from a File to an IPath?

IPath path = new Path( file.getPath() );

or if this is not working because of OS-specific path separators:

IPath path = Path.fromOSString( file.getPath() );

Cheers, Mathias


Back to the top