Uses of Class
org.apache.commons.net.ftp.FTPFile

Packages that use FTPFile
Package
Description
FTP and FTPS support classes
FTP file listing parser classes
  • Uses of FTPFile in org.apache.commons.net.ftp

    Methods in org.apache.commons.net.ftp that return FTPFile
    Modifier and Type
    Method
    Description
    FTPListParseEngine.getFiles()
    Returns an array of FTPFile objects containing the whole list of files returned by the server as read by this object's parser.
    FTPListParseEngine.getFiles(FTPFileFilter filter)
    Returns an array of FTPFile objects containing the whole list of files returned by the server as read by this object's parser.
    FTPListParseEngine.getNext(int quantityRequested)
    Returns an array of at most quantityRequested FTPFile objects starting at this object's internal iterator's current position.
    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.
    FTPClient.listDirectories()
    Using the default system autodetect mechanism, obtain a list of directories contained in the current working directory.
    FTPClient.listDirectories(String parent)
    Using the default system autodetect mechanism, obtain a list of directories contained in the specified directory.
    FTPClient.listFiles()
    Using the default system autodetect mechanism, obtain a list of file information for the current working directory.
    FTPClient.listFiles(String pathname)
    Using the default system autodetect mechanism, obtain a list of file information for the current working directory or for just a single file.
    FTPClient.listFiles(String pathname, FTPFileFilter filter)
    Version of FTPClient.listFiles(String) which allows a filter to be provided.
    FTPClient.mdtmFile(String pathname)
    Issue the FTP MDTM command (not supported by all servers) to retrieve the last modification time of a file.
    FTPClient.mlistDir()
    Generate a directory listing for the current directory using the MLSD command.
    FTPClient.mlistDir(String pathname)
    Generate a directory listing using the MLSD command.
    FTPClient.mlistDir(String pathname, FTPFileFilter filter)
    Generate a directory listing using the MLSD command.
    FTPClient.mlistFile(String pathname)
    Get file details using the MLST command
    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.
    Methods in org.apache.commons.net.ftp with parameters of type FTPFile
    Modifier and Type
    Method
    Description
    boolean
    FTPFileFilter.accept(FTPFile file)
    Checks if an FTPFile entry should be included or not.
  • Uses of FTPFile in org.apache.commons.net.ftp.parser

    Modifier and Type
    Method
    Description
    static FTPFile
    MLSxEntryParser.parseEntry(String entry)
     
    VMSFTPEntryParser.parseFileList(InputStream listStream)
    Deprecated.
    (2.2) No other FTPFileEntryParser implementations have this method.
    CompositeFileEntryParser.parseFTPEntry(String listEntry)
     
    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.
    MacOsPeterFTPEntryParser.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.
    MLSxEntryParser.parseFTPEntry(String entry)
     
    MVSFTPEntryParser.parseFTPEntry(String entry)
    Parses a line of an z/OS - MVS FTP server file listing and converts it into a usable format in the form of an FTPFile instance.
    NetwareFTPEntryParser.parseFTPEntry(String entry)
    Parses a line of an NetwareFTP server file listing and converts it into a usable format in the form of an FTPFile instance.
    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.
    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.
    OS400FTPEntryParser.parseFTPEntry(String entry)
     
    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.
    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.
    Methods in org.apache.commons.net.ftp.parser with parameters of type FTPFile
    Modifier and Type
    Method
    Description
    private void
    MLSxEntryParser.doUnixPerms(FTPFile file, String valueLowerCase)
     
    private boolean
    MVSFTPEntryParser.parseFileList(FTPFile file, String entry)
    Parse entries representing a dataset list.
    private boolean
    MVSFTPEntryParser.parseJeslevel1List(FTPFile file, String entry)
    Matches these entries, note: no header: [1] [2] [3] [4] [5] IBMUSER1 JOB01906 OUTPUT 3 Spool Files 012345678901234567890123456789012345678901234 1 2 3 4 ------------------------------------------- Group in regex [1] Job name [2] Job number [3] Job status (INPUT,ACTIVE,OUTPUT) [4] Number of sysout files [5] The string "Spool Files"
    private boolean
    MVSFTPEntryParser.parseJeslevel2List(FTPFile file, String entry)
    Matches these entries, note: no header: [1] [2] [3] [4] [5] JOBNAME JOBID OWNER STATUS CLASS IBMUSER1 JOB01906 IBMUSER OUTPUT A RC=0000 3 spool files IBMUSER TSU01830 IBMUSER OUTPUT TSU ABEND=522 3 spool files 012345678901234567890123456789012345678901234 1 2 3 4 ------------------------------------------- Group in regex [1] Job name [2] Job number [3] Owner [4] Job status (INPUT,ACTIVE,OUTPUT) [5] Job Class [6] The rest
    private boolean
    MVSFTPEntryParser.parseMemberList(FTPFile file, String entry)
    Parse entries within a partitioned dataset.
    private boolean
    MVSFTPEntryParser.parseSimpleEntry(FTPFile file, String entry)
    Assigns the name to the first word of the entry.
    private boolean
    MVSFTPEntryParser.parseUnixList(FTPFile file, String entry)
    Parse the entry as a standard unix file.