Uses of Class
com.sshtools.sftp.SftpFile

Packages that use SftpFile
com.sshtools.sftp This package contains the SSHTools SFTP client converted for use with the J2SSH Maverick API. 
com.sshtools.sftp.fallback   
com.sshtools.sftp.subsystem   
 

Uses of SftpFile in com.sshtools.sftp
 

Methods in com.sshtools.sftp that return SftpFile
 SftpFile AbstractSftpClient.getFile(String path)
           
 SftpFile SftpClient.getFile(String path)
           
 SftpFile[] AbstractSftpClient.getFiles(String remote)
           
 SftpFile[] SftpClient.getFiles(String remote)
           Download the remote files to the local computer
 SftpFile[] AbstractSftpClient.getFiles(String remote, boolean resume)
           
 SftpFile[] SftpClient.getFiles(String remote, boolean resume)
           Download the remote files to the local computer
 SftpFile[] AbstractSftpClient.getFiles(String remote, FileTransferProgress progress)
           
 SftpFile[] SftpClient.getFiles(String remote, FileTransferProgress progress)
           Download the remote files to the local computer.
 SftpFile[] AbstractSftpClient.getFiles(String remote, FileTransferProgress progress, boolean resume)
           
 SftpFile[] SftpClient.getFiles(String remote, FileTransferProgress progress, boolean resume)
           Download the remote files to the local computer.
 SftpFile[] AbstractSftpClient.getFiles(String remote, OutputStream local)
           
 SftpFile[] SftpClient.getFiles(String remote, OutputStream local)
          Download the remote files into an OutputStream.
 SftpFile[] AbstractSftpClient.getFiles(String remote, OutputStream local, FileTransferProgress progress)
           
 SftpFile[] SftpClient.getFiles(String remote, OutputStream local, FileTransferProgress progress)
           Download the remote files writing it to the specified OutputStream.
 SftpFile[] AbstractSftpClient.getFiles(String remote, OutputStream local, FileTransferProgress progress, long position)
           
 SftpFile[] SftpClient.getFiles(String remote, OutputStream local, FileTransferProgress progress, long position)
          make local copies of some of the variables, then call getfilematches, which calls get on each file that matches the regexp remote.
 SftpFile[] AbstractSftpClient.getFiles(String remote, OutputStream local, long position)
           
 SftpFile[] SftpClient.getFiles(String remote, OutputStream local, long position)
          Download the remote files into an OutputStream.
 SftpFile[] AbstractSftpClient.getFiles(String remote, String local)
           
 SftpFile[] SftpClient.getFiles(String remote, String local)
          Download the remote files into the local file.
 SftpFile[] AbstractSftpClient.getFiles(String remote, String local, boolean resume)
           
 SftpFile[] SftpClient.getFiles(String remote, String local, boolean resume)
          Download the remote files into the local file.
 SftpFile[] AbstractSftpClient.getFiles(String remote, String local, FileTransferProgress progress)
           
 SftpFile[] SftpClient.getFiles(String remote, String local, FileTransferProgress progress)
           Download the remote file to the local computer.
 SftpFile[] AbstractSftpClient.getFiles(String remote, String local, FileTransferProgress progress, boolean resume)
           
 SftpFile[] SftpClient.getFiles(String remote, String local, FileTransferProgress progress, boolean resume)
          make local copies of some of the variables, then call getfilematches, which calls get on each file that matches the regexp remote.
 SftpFile SftpFile.getParent()
          Get the parent of the current file.
 SftpFile[] AbstractSftpClient.ls()
           
 SftpFile[] SftpClient.ls()
           List the contents of the current remote working directory.
 SftpFile[] SftpClient.ls(String path)
           List the contents remote directory.
 SftpFile[] NoRegExpMatching.matchFilesWithPattern(SftpFile[] files, String fileNameRegExp)
          returns files
 SftpFile[] RegularExpressionMatching.matchFilesWithPattern(SftpFile[] files, String fileNameRegExp)
          returns each of the SftpFiles that match the pattern fileNameRegExp
 SftpFile[] GlobRegExpMatching.matchFilesWithPattern(SftpFile[] files, String fileNameRegExp)
          compiles fileNameRegExp into a regular expression and pattern matches on each file's name, and returns those that match.
 SftpFile[] Perl5RegExpMatching.matchFilesWithPattern(SftpFile[] files, String fileNameRegExp)
          compiles fileNameRegExp into a regular expression and pattern matches on each file's name, and returns those that match.
 

Methods in com.sshtools.sftp with parameters of type SftpFile
 boolean DirectoryOperation.containsFile(SftpFile f)
          Determine whether the directory operation contains an SftpFile
static String AbstractSftpClient.formatLongname(SftpFile file)
          Format a String with the details of the file.
 boolean AbstractSftpClient.isDirectoryOrLinkedDirectory(SftpFile file)
           
 boolean SftpClient.isDirectoryOrLinkedDirectory(SftpFile file)
          Determine whether the file object is pointing to a symbolic link that is pointing to a directory.
 SftpFile[] NoRegExpMatching.matchFilesWithPattern(SftpFile[] files, String fileNameRegExp)
          returns files
 SftpFile[] RegularExpressionMatching.matchFilesWithPattern(SftpFile[] files, String fileNameRegExp)
          returns each of the SftpFiles that match the pattern fileNameRegExp
 SftpFile[] GlobRegExpMatching.matchFilesWithPattern(SftpFile[] files, String fileNameRegExp)
          compiles fileNameRegExp into a regular expression and pattern matches on each file's name, and returns those that match.
 SftpFile[] Perl5RegExpMatching.matchFilesWithPattern(SftpFile[] files, String fileNameRegExp)
          compiles fileNameRegExp into a regular expression and pattern matches on each file's name, and returns those that match.
 

Uses of SftpFile in com.sshtools.sftp.fallback
 

Methods in com.sshtools.sftp.fallback that return SftpFile
 SftpFile[] ScpFallbackImpl.ls(String path)
           
 

Uses of SftpFile in com.sshtools.sftp.subsystem
 

Methods in com.sshtools.sftp.subsystem that return SftpFile
 SftpFile SftpSubsystemChannel.getFile(String path)
          Utility method to obtain an SftpFile instance for a given path.
 SftpFile SftpClientImpl.getFile(String path)
           
 SftpFile[] SftpClientImpl.ls(String path)
           
 SftpFile SftpSubsystemChannel.openDirectory(String path)
          Open a directory.
 SftpFile SftpSubsystemChannel.openFile(String absolutePath, int flags)
          Open a file.
 SftpFile SftpSubsystemChannel.openFile(String absolutePath, int flags, SftpFileAttributes attrs)
          Open a file.
 

Methods in com.sshtools.sftp.subsystem with parameters of type SftpFile
 void SftpSubsystemChannel.changePermissions(SftpFile file, int permissions)
          Change the permissions of a file.
 void SftpSubsystemChannel.closeFile(SftpFile file)
          Close a file or directory.
 String SftpSubsystemChannel.getAbsolutePath(SftpFile file)
          Get the absolute path of a file.
 SftpFileAttributes SftpSubsystemChannel.getAttributes(SftpFile file)
          Get the attributes of a file.
 int SftpSubsystemChannel.listChildren(SftpFile file, Vector children)
           List the children of a directory.
 void SftpSubsystemChannel.setAttributes(SftpFile file, SftpFileAttributes attrs)
          Sets the attributes of a file.
 



Copyright © 2012. All Rights Reserved.