Uses of Class
com.sshtools.j2ssh.sftp.FileAttributes
-
Packages that use FileAttributes Package Description com.sshtools.daemon.platform com.sshtools.daemon.vfs com.sshtools.j2ssh com.sshtools.j2ssh.sftp -
-
Uses of FileAttributes in com.sshtools.daemon.platform
Methods in com.sshtools.daemon.platform that return FileAttributes Modifier and Type Method Description abstract FileAttributes
NativeFileSystemProvider. getFileAttributes(byte[] handle)
abstract FileAttributes
NativeFileSystemProvider. getFileAttributes(java.lang.String path)
Methods in com.sshtools.daemon.platform with parameters of type FileAttributes Modifier and Type Method Description abstract byte[]
NativeFileSystemProvider. openFile(java.lang.String path, UnsignedInteger32 flags, FileAttributes attrs)
abstract void
NativeFileSystemProvider. setFileAttributes(byte[] handle, FileAttributes attrs)
abstract void
NativeFileSystemProvider. setFileAttributes(java.lang.String path, FileAttributes attrs)
-
Uses of FileAttributes in com.sshtools.daemon.vfs
Methods in com.sshtools.daemon.vfs that return FileAttributes Modifier and Type Method Description FileAttributes
VirtualFileSystem. getFileAttributes(byte[] handle)
FileAttributes
VirtualFileSystem. getFileAttributes(java.lang.String path)
Methods in com.sshtools.daemon.vfs with parameters of type FileAttributes Modifier and Type Method Description byte[]
VirtualFileSystem. openFile(java.lang.String path, UnsignedInteger32 flags, FileAttributes attrs)
void
VirtualFileSystem. setFileAttributes(byte[] handle, FileAttributes attrs)
void
VirtualFileSystem. setFileAttributes(java.lang.String path, FileAttributes attrs)
-
Uses of FileAttributes in com.sshtools.j2ssh
Methods in com.sshtools.j2ssh that return FileAttributes Modifier and Type Method Description FileAttributes
SftpClient. get(java.lang.String path)
FileAttributes
SftpClient. get(java.lang.String path, FileTransferProgress progress)
Download the remote file to the local computer.FileAttributes
SftpClient. get(java.lang.String remote, java.io.OutputStream local)
FileAttributes
SftpClient. get(java.lang.String remote, java.io.OutputStream local, FileTransferProgress progress)
Download the remote file writing it to the specifiedOutputStream
.FileAttributes
SftpClient. get(java.lang.String remote, java.lang.String local)
FileAttributes
SftpClient. get(java.lang.String remote, java.lang.String local, FileTransferProgress progress)
Download the remote file to the local computer.FileAttributes
SftpClient. stat(java.lang.String path)
Returns the attributes of the file from the remote computer. -
Uses of FileAttributes in com.sshtools.j2ssh.sftp
Methods in com.sshtools.j2ssh.sftp that return FileAttributes Modifier and Type Method Description FileAttributes
SftpFile. getAttributes()
FileAttributes
SftpSubsystemClient. getAttributes(SftpFile file)
FileAttributes
SftpSubsystemClient. getAttributes(java.lang.String path)
FileAttributes
SshFxpAttrs. getAttributes()
FileAttributes
SshFxpFSetStat. getAttributes()
FileAttributes
SshFxpMkdir. getAttributes()
FileAttributes
SshFxpOpen. getAttributes()
FileAttributes
SshFxpSetStat. getAttributes()
Methods in com.sshtools.j2ssh.sftp with parameters of type FileAttributes Modifier and Type Method Description SftpFile
SftpSubsystemClient. openFile(java.lang.String absolutePath, int flags, FileAttributes attrs)
void
SftpSubsystemClient. setAttributes(SftpFile file, FileAttributes attrs)
void
SftpSubsystemClient. setAttributes(java.lang.String path, FileAttributes attrs)
Constructors in com.sshtools.j2ssh.sftp with parameters of type FileAttributes Constructor Description SftpFile(java.lang.String absolutePath, FileAttributes attrs)
Creates a new SftpFile object.SshFxpAttrs(UnsignedInteger32 id, FileAttributes attrs)
Creates a new SshFxpAttrs object.SshFxpFSetStat(UnsignedInteger32 id, byte[] handle, FileAttributes attrs)
Creates a new SshFxpFSetStat object.SshFxpMkdir(UnsignedInteger32 id, java.lang.String path, FileAttributes attrs)
Creates a new SshFxpMkdir object.SshFxpOpen(UnsignedInteger32 id, java.lang.String filename, UnsignedInteger32 pflags, FileAttributes attrs)
SshFxpSetStat(UnsignedInteger32 id, java.lang.String path, FileAttributes attrs)
Creates a new SshFxpSetStat object.
-