Uses of Class
com.trilead.ssh2.SFTPv3FileHandle
Packages that use SFTPv3FileHandle
-
Uses of SFTPv3FileHandle in com.trilead.ssh2
Methods in com.trilead.ssh2 that return SFTPv3FileHandleModifier and TypeMethodDescriptionSFTPv3Client.createFile
(String fileName) Create a file and open it for reading and writing.SFTPv3Client.createFile
(String fileName, SFTPv3FileAttributes attr) Create a file and open it for reading and writing.SFTPv3Client.createFileTruncate
(String fileName) Create a file (truncate it if it already exists) and open it for reading and writing.SFTPv3Client.createFileTruncate
(String fileName, SFTPv3FileAttributes attr) reate a file (truncate it if it already exists) and open it for reading and writing.SFTPv3Client.openFileRO
(String fileName) Open a file for reading.SFTPv3Client.openFileRW
(String fileName) Open a file for reading and writing.Methods in com.trilead.ssh2 with parameters of type SFTPv3FileHandleModifier and TypeMethodDescriptionvoid
SFTPv3Client.closeFile
(SFTPv3FileHandle handle) Close a file.void
SFTPv3Client.fsetstat
(SFTPv3FileHandle handle, SFTPv3FileAttributes attr) Modify the attributes of a file.SFTPv3Client.fstat
(SFTPv3FileHandle handle) Retrieve the file attributes of an open file.int
SFTPv3Client.read
(SFTPv3FileHandle handle, long fileOffset, byte[] dst, int dstoff, int len) Read bytes from a file.void
SFTPv3Client.write
(SFTPv3FileHandle handle, long fileOffset, byte[] src, int srcoff, int len) Write bytes to a file.