Uses of Class
com.maverick.sftp.SftpStatusException

Packages that use SftpStatusException
com.maverick.sftp The base implementation of the SFTP protocol enabling SFTP to be operated over both SSH1 and SSH2 connections.
 
com.sshtools.scp This package contains the SSHTools SCP implementation converted to use the J2SSH Maverick API's SCP engine. 
com.sshtools.sftp This package contains the SSHTools SFTP client converted for use with the J2SSH Maverick API. 
 

Uses of SftpStatusException in com.maverick.sftp
 

Methods in com.maverick.sftp that throw SftpStatusException
 boolean SftpFile.canRead()
          Determine whether the user has read access to the file.
 boolean SftpFile.canWrite()
          Determine whether the user has write access to the file.
 void SftpSubsystemChannel.changePermissions(SftpFile file, int permissions)
          Change the permissions of a file.
 void SftpSubsystemChannel.changePermissions(java.lang.String filename, int permissions)
          Change the permissions of a file.
 void SftpSubsystemChannel.changePermissions(java.lang.String filename, java.lang.String permissions)
          Change the permissions of a file.
 void SftpFile.close()
          Close the file.
 void SftpSubsystemChannel.closeFile(SftpFile file)
          Close a file or directory.
 void SftpSubsystemChannel.createSymbolicLink(java.lang.String targetpath, java.lang.String linkpath)
          Create a symbolic link.
 void SftpFile.delete()
          Delete this file/directory from the remote server.
 java.lang.String SftpSubsystemChannel.getAbsolutePath(SftpFile file)
          Get the absolute path of a file.
 java.lang.String SftpSubsystemChannel.getAbsolutePath(java.lang.String path)
          Get the absolute path of a file.
 SftpFileAttributes SftpFile.getAttributes()
          Get the files attributes.
 SftpFileAttributes SftpSubsystemChannel.getAttributes(SftpFile file)
          Get the attributes of a file.
 SftpFileAttributes SftpSubsystemChannel.getAttributes(java.lang.String path)
          Get the attributes of a file.
 java.lang.String SftpSubsystemChannel.getCanonicalNewline()
          Returns the canonical newline convention in use when reading/writing text files.
 java.lang.String SftpSubsystemChannel.getDefaultDirectory()
          Gets the users default directory.
 SftpFile SftpSubsystemChannel.getFile(java.lang.String path)
          Utility method to obtain an SftpFile instance for a given path.
 void SftpSubsystemChannel.getOKRequestStatus(com.maverick.util.UnsignedInteger32 requestId)
          Verify that an OK status has been returned for a request id.
 SftpFile SftpFile.getParent()
          Get the parent of the current file.
 java.lang.String SftpSubsystemChannel.getSymbolicLinkTarget(java.lang.String linkpath)
          Get the target path of a symbolic link.
 boolean SftpFile.isBlock()
          Determine whether the file is pointing to a block special file.
 boolean SftpFile.isCharacter()
          Determine whether the file is pointing to a character mode device.
 boolean SftpFile.isDirectory()
          Determine whether the file object is pointing to a directory.
 boolean SftpFile.isFifo()
          Determine whether the file is pointing to a pipe.
 boolean SftpFile.isFile()
          Determine whether the file object is pointing to a file.
 boolean SftpFile.isLink()
          Determine whether the file object is a symbolic link.
 boolean SftpFile.isSocket()
          Determine whether the file is pointing to a socket.
 int SftpSubsystemChannel.listChildren(SftpFile file, java.util.Vector children)
          List the children of a directory.
 void SftpSubsystemChannel.makeDirectory(java.lang.String path)
          Make a directory.
 void SftpSubsystemChannel.makeDirectory(java.lang.String path, SftpFileAttributes attrs)
          Make a directory.
 SftpFile SftpSubsystemChannel.openDirectory(java.lang.String path)
          Open a directory.
 SftpFile SftpSubsystemChannel.openFile(java.lang.String absolutePath, int flags)
          Open a file.
 SftpFile SftpSubsystemChannel.openFile(java.lang.String absolutePath, int flags, SftpFileAttributes attrs)
          Open a file.
 void SftpSubsystemChannel.performOptimizedRead(byte[] handle, long length, int blocksize, java.io.OutputStream out, int outstandingRequests, FileTransferProgress progress)
          Performs an optimized read of a file through use of asynchronous messages.
 void SftpSubsystemChannel.performOptimizedRead(byte[] handle, long length, int blocksize, java.io.OutputStream out, int outstandingRequests, FileTransferProgress progress, long position)
          Performs an optimized read of a file through use of asynchronous messages.
 void SftpSubsystemChannel.performOptimizedWrite(byte[] handle, int blocksize, int outstandingRequests, java.io.InputStream in, int buffersize, FileTransferProgress progress)
          Performs an optimized write of a file through asynchronous messaging and through buffering the local file into memory.
 void SftpSubsystemChannel.performOptimizedWrite(byte[] handle, int blocksize, int outstandingRequests, java.io.InputStream in, int buffersize, FileTransferProgress progress, long position)
          Performs an optimized write of a file through asynchronous messaging and through buffering the local file into memory.
 void SftpSubsystemChannel.performSynchronousRead(byte[] handle, int blocksize, java.io.OutputStream out, FileTransferProgress progress, long position)
          Perform a synchronous read of a file from the remote file system.
 com.maverick.util.UnsignedInteger32 SftpSubsystemChannel.postReadRequest(byte[] handle, long offset, int len)
          Post a read request to the server and return the request id; this is used to optimize file downloads.
 com.maverick.util.UnsignedInteger32 SftpSubsystemChannel.postWriteRequest(byte[] handle, long position, byte[] data, int off, int len)
          Send a write request for an open file but do not wait for the response from the server.
 int SftpSubsystemChannel.readFile(byte[] handle, com.maverick.util.UnsignedInteger64 offset, byte[] output, int off, int len)
          Read a block of data from an open file.
 void SftpSubsystemChannel.recurseMakeDirectory(java.lang.String path)
          Recurse through a hierarchy of directories creating them as necessary.
 void SftpSubsystemChannel.removeDirectory(java.lang.String path)
          Remove an empty directory.
 void SftpSubsystemChannel.removeFile(java.lang.String filename)
          Remove a file.
 void SftpSubsystemChannel.renameFile(java.lang.String oldpath, java.lang.String newpath)
          Rename an existing file.
 SftpMessage SftpSubsystemChannel.sendExtensionMessage(java.lang.String request, byte[] requestData)
          Send an extension message and return the response.
 void SftpSubsystemChannel.setAttributes(SftpFile file, SftpFileAttributes attrs)
          Sets the attributes of a file.
 void SftpSubsystemChannel.setAttributes(java.lang.String path, SftpFileAttributes attrs)
          Sets the attributes of a file.
 void SftpSubsystemChannel.writeFile(byte[] handle, com.maverick.util.UnsignedInteger64 offset, byte[] data, int off, int len)
          Write a block of data to an open file.
 

Constructors in com.maverick.sftp that throw SftpStatusException
SftpFileInputStream(SftpFile file)
           
SftpFileInputStream(SftpFile file, long position)
          Creates a new SftpFileInputStream object.
SftpFileOutputStream(SftpFile file)
          Creates a new SftpFileOutputStream object.
 

Uses of SftpStatusException in com.sshtools.scp
 

Methods in com.sshtools.scp that throw SftpStatusException
 void ScpClient.put(java.lang.String localFile, java.lang.String remoteFile, boolean recursive)
           Uploads a local file onto the remote server.
 

Uses of SftpStatusException in com.sshtools.sftp
 

Methods in com.sshtools.sftp that throw SftpStatusException
 void SftpClient.cd(java.lang.String dir)
           Changes the working directory on the remote server, or the user's default directory if null or any empty string is provided as the directory path.
 void SftpClient.cdup()
          Change the working directory to the parent directory
 void SftpClient.chgrp(java.lang.String gid, java.lang.String path)
           Sets the group ID for the file or directory.
 void SftpClient.chmod(int permissions, java.lang.String path)
           Changes the access permissions or modes of the specified file or directory.
 void SftpClient.chown(java.lang.String uid, java.lang.String path)
           Sets the user ID to owner for the file or directory.
 DirectoryOperation SftpClient.copyLocalDirectory(java.lang.String localdir, java.lang.String remotedir, boolean recurse, boolean sync, boolean commit, FileTransferProgress progress)
          Copy the contents of a local directory into a remote directory.
 DirectoryOperation SftpClient.copyRemoteDirectory(java.lang.String remotedir, java.lang.String localdir, boolean recurse, boolean sync, boolean commit, FileTransferProgress progress)
          Copy the contents of a remote directory to a local directory
static java.lang.String SftpClient.formatLongname(SftpFile file)
          Format a String with the details of the file.
 SftpFileAttributes SftpClient.get(java.lang.String path)
           Download the remote file to the local computer
 SftpFileAttributes SftpClient.get(java.lang.String path, boolean resume)
           Download the remote file to the local computer
 SftpFileAttributes SftpClient.get(java.lang.String path, FileTransferProgress progress)
           Download the remote file to the local computer.
 SftpFileAttributes SftpClient.get(java.lang.String path, FileTransferProgress progress, boolean resume)
           Download the remote file to the local computer.
 SftpFileAttributes SftpClient.get(java.lang.String remote, java.io.OutputStream local)
          Download the remote file into an OutputStream.
 SftpFileAttributes SftpClient.get(java.lang.String remote, java.io.OutputStream local, FileTransferProgress progress)
           Download the remote file writing it to the specified OutputStream.
 SftpFileAttributes SftpClient.get(java.lang.String remote, java.io.OutputStream local, FileTransferProgress progress, long position)
           Download the remote file writing it to the specified OutputStream.
 SftpFileAttributes SftpClient.get(java.lang.String remote, java.io.OutputStream local, long position)
          Download the remote file into an OutputStream.
 SftpFileAttributes SftpClient.get(java.lang.String remote, java.lang.String local)
          Download the remote file into the local file.
 SftpFileAttributes SftpClient.get(java.lang.String remote, java.lang.String local, boolean resume)
          Download the remote file into the local file.
 SftpFileAttributes SftpClient.get(java.lang.String remote, java.lang.String local, FileTransferProgress progress)
           Download the remote file to the local computer.
 SftpFileAttributes SftpClient.get(java.lang.String remote, java.lang.String local, FileTransferProgress progress, boolean resume)
           Download the remote file to the local computer.
 java.lang.String SftpClient.getAbsolutePath(java.lang.String path)
          Get the absolute path for a file.
 java.lang.String SftpClient.getDefaultDirectory()
           Get the default directory (or HOME directory)
 SftpFile[] SftpClient.getFiles(java.lang.String remote)
           Download the remote files to the local computer
 SftpFile[] SftpClient.getFiles(java.lang.String remote, boolean resume)
           Download the remote files to the local computer
 SftpFile[] SftpClient.getFiles(java.lang.String remote, FileTransferProgress progress)
           Download the remote files to the local computer.
 SftpFile[] SftpClient.getFiles(java.lang.String remote, FileTransferProgress progress, boolean resume)
           Download the remote files to the local computer.
 SftpFile[] SftpClient.getFiles(java.lang.String remote, java.lang.String local)
          Download the remote files into the local file.
 SftpFile[] SftpClient.getFiles(java.lang.String remote, java.lang.String local, boolean resume)
          Download the remote files into the local file.
 SftpFile[] SftpClient.getFiles(java.lang.String remote, java.lang.String local, FileTransferProgress progress, boolean resume)
           Download the remote file to the local computer.
 java.io.InputStream SftpClient.getInputStream(java.lang.String remotefile)
          Create an InputStream for reading a remote file.
 java.io.InputStream SftpClient.getInputStream(java.lang.String remotefile, long position)
          Create an InputStream for reading a remote file.
 java.io.OutputStream SftpClient.getOutputStream(java.lang.String remotefile)
          Create an OutputStream for writing to a remote file.
 long DirectoryOperation.getTransferSize()
          Get the total number of bytes that this operation will transfer
 boolean SftpClient.isDirectoryOrLinkedDirectory(SftpFile file)
          Determine whether the file object is pointing to a symbolic link that is pointing to a directory.
 void SftpClient.lcd(java.lang.String path)
           Changes the local working directory.
 SftpFile[] SftpClient.ls()
           List the contents of the current remote working directory.
 SftpFile[] SftpClient.ls(java.lang.String path)
           List the contents remote directory.
 java.lang.String[] RegularExpressionMatching.matchFileNamesWithPattern(java.io.File[] files, java.lang.String fileNameRegExp)
          returns each of the files that match the pattern fileNameRegExp
 java.lang.String[] NoRegExpMatching.matchFileNamesWithPattern(java.io.File[] files, java.lang.String fileNameRegExp)
          opens and returns the requested filename string
 SftpFile[] RegularExpressionMatching.matchFilesWithPattern(SftpFile[] files, java.lang.String fileNameRegExp)
          returns each of the SftpFiles that match the pattern fileNameRegExp
 SftpFile[] Perl5RegExpMatching.matchFilesWithPattern(SftpFile[] files, java.lang.String fileNameRegExp)
          compiles fileNameRegExp into a regular expression and pattern matches on each file's name, and returns those that match.
 SftpFile[] GlobRegExpMatching.matchFilesWithPattern(SftpFile[] files, java.lang.String fileNameRegExp)
          compiles fileNameRegExp into a regular expression and pattern matches on each file's name, and returns those that match.
 SftpFile[] NoRegExpMatching.matchFilesWithPattern(SftpFile[] files, java.lang.String fileNameRegExp)
          returns files
 void SftpClient.mkdir(java.lang.String dir)
           Creates a new directory on the remote server.
 void SftpClient.mkdirs(java.lang.String dir)
           Create a directory or set of directories.
 SftpFile SftpClient.openFile(java.lang.String fileName)
           
 void SftpClient.put(java.io.InputStream in, java.lang.String remote)
          Upload the contents of an InputStream to the remote computer.
 void SftpClient.put(java.io.InputStream in, java.lang.String remote, FileTransferProgress progress)
           Upload a file to the remote computer reading from the specified InputStream.
 void SftpClient.put(java.io.InputStream in, java.lang.String remote, FileTransferProgress progress, long position)
           
 void SftpClient.put(java.io.InputStream in, java.lang.String remote, long position)
          Upload the contents of an InputStream to the remote computer.
 void SftpClient.put(java.lang.String local)
          Upload a file to the remote computer
 void SftpClient.put(java.lang.String local, boolean resume)
          Upload a file to the remote computer
 void SftpClient.put(java.lang.String local, FileTransferProgress progress)
           Upload a file to the remote computer.
 void SftpClient.put(java.lang.String local, FileTransferProgress progress, boolean resume)
           Upload a file to the remote computer.
 void SftpClient.put(java.lang.String local, java.lang.String remote)
          Upload a file to the remote computer
 void SftpClient.put(java.lang.String local, java.lang.String remote, boolean resume)
          Upload a file to the remote computer
 void SftpClient.put(java.lang.String local, java.lang.String remote, FileTransferProgress progress)
           Upload a file to the remote computer.
 void SftpClient.put(java.lang.String local, java.lang.String remote, FileTransferProgress progress, boolean resume)
           Upload a file to the remote computer.
 void SftpClient.putFiles(java.lang.String local)
          Upload the contents of an InputStream to the remote computer.
 void SftpClient.putFiles(java.lang.String local, boolean resume)
          Upload files to the remote computer
 void SftpClient.putFiles(java.lang.String local, FileTransferProgress progress)
           Upload files to the remote computer
 void SftpClient.putFiles(java.lang.String local, FileTransferProgress progress, boolean resume)
           Upload files to the remote computer
 void SftpClient.putFiles(java.lang.String local, java.lang.String remote)
          Upload files to the remote computer
 void SftpClient.putFiles(java.lang.String local, java.lang.String remote, boolean resume)
          Upload files to the remote computer
 void SftpClient.putFiles(java.lang.String local, java.lang.String remote, FileTransferProgress progress)
           Upload files to the remote computer.
 void SftpClient.putFiles(java.lang.String local, java.lang.String remote, FileTransferProgress progress, boolean resume)
          make local copies of some of the variables, then call putfilematches, which calls "put" on each file that matches the regexp local.
 void SftpClient.rename(java.lang.String oldpath, java.lang.String newpath)
           Rename a file on the remote computer.
 void SftpClient.rm(java.lang.String path)
           Remove a file or directory from the remote computer.
 void SftpClient.rm(java.lang.String path, boolean force, boolean recurse)
          Remove a file or directory on the remote computer with options to force deletion of existing files and recursion.
 SftpFileAttributes SftpClient.stat(java.lang.String path)
           Returns the attributes of the file from the remote computer.
 void SftpClient.symlink(java.lang.String path, java.lang.String link)
           Create a symbolic link on the remote computer.
 

Constructors in com.sshtools.sftp that throw SftpStatusException
SftpClient(SshClient ssh)
           
SftpClient(SshClient ssh, int Max_Version)
           Constructs the SFTP client with a given channel event listener.
SftpClient(SshSession session)
           
SftpClient(SshSession session, int Max_Version)
           
 



Copyright © 2003-2008 SSHTools LTD. All Rights Reserved.