| java.lang.Object com.sshtools.daemon.platform.NativeFileSystemProvider
All known Subclasses: com.sshtools.daemon.vfs.VirtualFileSystem,
NativeFileSystemProvider | abstract public class NativeFileSystemProvider (Code) | | author: $author$ version: $Revision: 1.13 $ |
Method Summary | |
abstract public void | closeFile(byte[] handle) | abstract public void | createSymbolicLink(String link, String target) | abstract public boolean | fileExists(String path) | abstract public String | getCanonicalPath(String path) | abstract public String | getDefaultPath(String username) | abstract public FileAttributes | getFileAttributes(String path) | abstract public FileAttributes | getFileAttributes(byte[] handle) | public static NativeFileSystemProvider | getInstance() | abstract public String | getRealPath(String path) | abstract public boolean | makeDirectory(String path) | abstract public byte[] | openDirectory(String path) | abstract public byte[] | openFile(String path, UnsignedInteger32 flags, FileAttributes attrs) | abstract public SftpFile[] | readDirectory(byte[] handle) | abstract public byte[] | readFile(byte[] handle, UnsignedInteger64 offset, UnsignedInteger32 len) | abstract public SftpFile | readSymbolicLink(String path) | abstract public void | removeDirectory(String path) | abstract public void | removeFile(String path) | abstract public void | renameFile(String oldpath, String newpath) | abstract public void | setFileAttributes(String path, FileAttributes attrs) | abstract public void | setFileAttributes(byte[] handle, FileAttributes attrs) | abstract public void | verifyPermissions(String username, String path, String permissions) | abstract public void | writeFile(byte[] handle, UnsignedInteger64 offset, byte[] data, int off, int len) |
OPEN_APPEND | final public static int OPEN_APPEND(Code) | | |
OPEN_CREATE | final public static int OPEN_CREATE(Code) | | |
OPEN_EXCLUSIVE | final public static int OPEN_EXCLUSIVE(Code) | | |
OPEN_READ | final public static int OPEN_READ(Code) | | |
OPEN_TRUNCATE | final public static int OPEN_TRUNCATE(Code) | | |
OPEN_WRITE | final public static int OPEN_WRITE(Code) | | |
|
|