Methods Summary |
---|
public static native int | close(long thedir)close the specified directory.
|
public static native int | make(java.lang.String path, int perm, long pool)Create a new directory on the file system.
|
public static native int | makeRecursive(java.lang.String path, int perm, long pool)Creates a new directory on the file system, but behaves like
'mkdir -p'. Creates intermediate directories as required. No error
will be reported if PATH already exists.
|
public static native long | open(java.lang.String dirname, long pool)Open the specified directory.
|
public static native int | read(FileInfo finfo, int wanted, long thedir)Read the next entry from the specified directory.
|
public static native int | remove(java.lang.String path, long pool)Remove directory from the file system.
|
public static native int | rewind(long thedir)Rewind the directory to the first entry.
|
public static native java.lang.String | tempGet(long pool)Find an existing directory suitable as a temporary storage location.
|