Class GhidraFile

java.lang.Object
java.io.File
docking.widgets.filechooser.GhidraFile
All Implemented Interfaces:
Serializable, Comparable<File>

public class GhidraFile extends File
An extension of File that does not translate to the native operating system's file separator. For example, on Windows:
File f = new File("c:/temp/foo.txt");
String path = f.getAbsolutePath();
In this case, path equals "c:\temp\foo.txt". However using GhidraFile, path would still equal "c:/temp/foo.txt"
See Also: