Package | Description |
---|---|
com.trilead.ssh2 |
Modifier and Type | Field and Description |
---|---|
SFTPv3FileAttributes |
SFTPv3DirectoryEntry.attributes
The attributes of this entry.
|
Modifier and Type | Method and Description |
---|---|
SFTPv3FileAttributes |
SFTPv3Client._stat(java.lang.String path)
Graceful
SFTPv3Client.stat(String) that returns null if the path doesn't exist. |
SFTPv3FileAttributes |
SFTPv3Client.fstat(SFTPv3FileHandle handle)
Retrieve the file attributes of an open file.
|
SFTPv3FileAttributes |
SFTPv3Client.lstat(java.lang.String path)
Retrieve the file attributes of a file.
|
private SFTPv3FileAttributes |
SFTPv3Client.readAttrs(TypesReader tr) |
SFTPv3FileAttributes |
SFTPv3Client.stat(java.lang.String path)
Retrieve the file attributes of a file.
|
private SFTPv3FileAttributes |
SFTPv3Client.statBoth(java.lang.String path,
int statMethod) |
Modifier and Type | Method and Description |
---|---|
private byte[] |
SFTPv3Client.createAttrs(SFTPv3FileAttributes attr) |
SFTPv3FileHandle |
SFTPv3Client.createFile(java.lang.String fileName,
SFTPv3FileAttributes attr)
Create a file and open it for reading and writing.
|
SFTPv3FileHandle |
SFTPv3Client.createFileTruncate(java.lang.String fileName,
SFTPv3FileAttributes attr)
reate a file (truncate it if it already exists) and open it for reading and writing.
|
void |
SFTPv3Client.fsetstat(SFTPv3FileHandle handle,
SFTPv3FileAttributes attr)
Modify the attributes of a file.
|
private SFTPv3FileHandle |
SFTPv3Client.openFile(java.lang.String fileName,
int flags,
SFTPv3FileAttributes attr) |
void |
SFTPv3Client.setstat(java.lang.String path,
SFTPv3FileAttributes attr)
Modify the attributes of a file.
|