Frames | No Frames |
Methods with return type org.apache.commons.net.ftp.FTPFile | |
FTPFile[] | Returns a list of FTPFile objects for ALL files listed in the server's
LIST output. |
FTPFile[] | returns an array of FTPFile objects for all the files in the directory
listing
|
FTPFile[] | Returns an array of FTPFile objects containing the whole list of
files returned by the server as read by this object's parser. |
FTPFile[] | FTPFileIterator.getNext(int quantityRequested) Returns an array of at most quantityRequested FTPFile
objects starting at this iterator's current position within its
associated list. |
FTPFile[] | FTPListParseEngine.getNext(int quantityRequested) Returns an array of at most quantityRequested FTPFile
objects starting at this object's internal iterator's current position. |
FTPFile[] | FTPFileIterator.getPrevious(int quantityRequested) Returns an array of at most quantityRequested FTPFile
objects starting at the position preceding this iterator's current
position within its associated list. |
FTPFile[] | FTPListParseEngine.getPrevious(int quantityRequested) Returns an array of at most quantityRequested FTPFile
objects starting at this object's internal iterator's current position,
and working back toward the beginning. |
FTPFile[] | Using the default system autodetect mechanism, obtain a
list of file information for the current working directory. |
FTPFile[] | Using the default system autodetect mechanism, obtain a
list of file information for the current working directory
or for just a single file. |
FTPFile[] | Using the supplied parserKey , obtain a list
of file information for the current working directory or for just a
single file. |
FTPFile[] | Using a programmer specified FTPFileListParser ,
obtain a list of file information for the current working directory. |
FTPFile[] | Using a programmer specified FTPFileListParser , obtain a
list of file information for a directory or information for
just a single file. |
FTPFile | Returns a single parsed FTPFile object corresponding to the raw input
line at this iterator's current position. |
FTPFile | FTPFileEntryParser.parseFTPEntry(String listEntry) Parses a line of an FTP server file listing and converts it into a usable
format in the form of an FTPFile instance. |
FTPFile[] | FTPFileEntryParserImpl.parseFileList(InputStream listStream)
Parses an FTP server file listing and converts it into a usable format
in the form of an array of FTPFile instances. |
FTPFile[] | FTPFileListParser.parseFileList(InputStream listStream)
Parses an FTP server file listing and converts it into a usable format
in the form of an array of FTPFile instances. |
FTPFile[] | FTPFileEntryParserImpl.parseFileList(InputStream listStream, String encoding)
Parses an FTP server file listing and converts it into a usable format
in the form of an array of FTPFile instances. |
FTPFile[] | FTPFileListParser.parseFileList(InputStream listStream, String encoding)
Parses an FTP server file listing and converts it into a usable format
in the form of an array of FTPFile instances. |
FTPFile | Returns a single parsed FTPFile object corresponding to the raw input
line at the position preceding that of the internal iterator over
the list of raw lines maintained by this object
After this method is called the internal iterator is retreated by one
element (unless it is already at beginning of list). |
Methods with return type org.apache.commons.net.ftp.FTPFile | |
FTPFile | CompositeFileEntryParser.parseFTPEntry(String listEntry) |
FTPFile | EnterpriseUnixFTPEntryParser.parseFTPEntry(String entry) Parses a line of a unix FTP server file listing and converts it into a
usable format in the form of an FTPFile instance. |
FTPFile | MVSFTPEntryParser.parseFTPEntry(String entry) Parses a line of an MVS FTP server file listing and converts it into a
usable format in the form of an FTPFile instance. |
FTPFile | NTFTPEntryParser.parseFTPEntry(String entry) Parses a line of an NT FTP server file listing and converts it into a
usable format in the form of an FTPFile instance. |
FTPFile | OS2FTPEntryParser.parseFTPEntry(String entry) Parses a line of an OS2 FTP server file listing and converts it into a
usable format in the form of an FTPFile instance. |
FTPFile | OS400FTPEntryParser.parseFTPEntry(String entry) |
FTPFile | UnixFTPEntryParser.parseFTPEntry(String entry) Parses a line of a unix (standard) FTP server file listing and converts
it into a usable format in the form of an FTPFile
instance. |
FTPFile | VMSFTPEntryParser.parseFTPEntry(String entry) Parses a line of a VMS FTP server file listing and converts it into a
usable format in the form of an FTPFile instance. |
FTPFile[] | VMSFTPEntryParser.parseFileList(InputStream listStream)
Parses an FTP server file listing and converts it into a usable format
in the form of an array of FTPFile instances. |