|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FTPFile | |
---|---|
org.apache.commons.net.ftp | |
org.apache.commons.net.ftp.parser |
Uses of FTPFile in org.apache.commons.net.ftp |
---|
Fields in org.apache.commons.net.ftp declared as FTPFile | |
private static FTPFile[] |
FTPFileIterator.EMPTY
shorthand for an empty return value. |
Methods in org.apache.commons.net.ftp that return FTPFile | |
FTPFile |
DefaultFTPFileListParser.parseFTPEntry(java.lang.String entry)
Parses an FTP server listing entry (a single line) and returns an FTPFile instance with the resulting information. |
FTPFile[] |
DefaultFTPFileListParser.parseFileList(java.io.InputStream listStream)
Parses an FTP server file listing and converts it into a usable format in the form of an array of FTPFile instances. |
private FTPFile |
FTPFileIterator.parseFTPEntry(java.lang.String entry)
Delegates to this object's parser member the job of parsing an entry. |
FTPFile[] |
FTPFileIterator.getFiles()
Returns a list of FTPFile objects for ALL files listed in the server's LIST output. |
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 |
FTPFileIterator.next()
Returns a single parsed FTPFile object corresponding to the raw input line at this 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 |
FTPFileIterator.previous()
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). |
FTPFile[] |
FTPFileList.getFiles()
returns an array of FTPFile objects for all the files in the directory listing |
FTPFile[] |
FTPClient.listFiles(FTPFileListParser parser,
java.lang.String pathname)
Using a programmer specified FTPFileListParser , obtain a
list of file information for a directory or information for
just a single file. |
FTPFile[] |
FTPClient.listFiles(FTPFileListParser parser)
Using a programmer specified FTPFileListParser ,
obtain a list of file information for the current working directory. |
FTPFile[] |
FTPClient.listFiles(java.lang.String pathname)
Using the DefaultFTPFileListParser , obtain a list of
file information
for a directory or information for just a single file. |
FTPFile[] |
FTPClient.listFiles()
Using the DefaultFTPFileListParser , obtain a list of
file information for the current working directory. |
FTPFile |
FTPFileEntryParser.parseFTPEntry(java.lang.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[] |
FTPFileListParser.parseFileList(java.io.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[] |
FTPFileListParserImpl.parseFileList(java.io.InputStream listStream)
Parses an FTP server file listing and converts it into a usable format in the form of an array of FTPFile instances. |
Uses of FTPFile in org.apache.commons.net.ftp.parser |
---|
Methods in org.apache.commons.net.ftp.parser that return FTPFile | |
FTPFile |
EnterpriseUnixFTPEntryParser.parseFTPEntry(java.lang.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 |
UnixFTPEntryParser.parseFTPEntry(java.lang.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 |
OS2FTPEntryParser.parseFTPEntry(java.lang.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[] |
VMSFTPEntryParser.parseFileList(java.io.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 |
VMSFTPEntryParser.parseFTPEntry(java.lang.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 |
NTFTPEntryParser.parseFTPEntry(java.lang.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. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |