@InterfaceAudience.Public @InterfaceStability.Stable public class FTPFileSystem extends FileSystem
 A FileSystem backed by an FTP client provided by Apache Commons Net.
 
| Modifier and Type | Field and Description | 
|---|---|
| static int | DEFAULT_BLOCK_SIZE | 
| static int | DEFAULT_BUFFER_SIZE | 
| static String | E_SAME_DIRECTORY_ONLY | 
| static String | FS_FTP_HOST | 
| static String | FS_FTP_HOST_PORT | 
| static String | FS_FTP_PASSWORD_PREFIX | 
| static String | FS_FTP_USER_PREFIX | 
| static org.apache.commons.logging.Log | LOG | 
DEFAULT_FS, FS_DEFAULT_NAME_KEY, SHUTDOWN_HOOK_PRIORITY, statistics| Constructor and Description | 
|---|
| FTPFileSystem() | 
| Modifier and Type | Method and Description | 
|---|---|
| FSDataOutputStream | append(Path f,
            int bufferSize,
            Progressable progress)This optional operation is not yet supported. | 
| FSDataOutputStream | create(Path file,
            FsPermission permission,
            boolean overwrite,
            int bufferSize,
            short replication,
            long blockSize,
            Progressable progress)A stream obtained via this call must be closed before using other APIs of
 this class or else the invocation will block. | 
| boolean | delete(Path file,
            boolean recursive)Delete a file. | 
| protected int | getDefaultPort()Get the default port for this FTPFileSystem. | 
| FileStatus | getFileStatus(Path file)Return a file status object that represents the path. | 
| Path | getHomeDirectory()Return the current user's home directory in this filesystem. | 
| String | getScheme()Return the protocol scheme for the FileSystem. | 
| URI | getUri()Returns a URI whose scheme and authority identify this FileSystem. | 
| Path | getWorkingDirectory()Get the current working directory for the given file system | 
| void | initialize(URI uri,
                    Configuration conf)Called after a new FileSystem instance is constructed. | 
| FileStatus[] | listStatus(Path file)List the statuses of the files/directories in the given path if the path is
 a directory. | 
| boolean | mkdirs(Path file,
            FsPermission permission)Make the given file and all non-existent parents into
 directories. | 
| FSDataInputStream | open(Path file,
        int bufferSize)Opens an FSDataInputStream at the indicated Path. | 
| boolean | rename(Path src,
            Path dst)Renames Path src to Path dst. | 
| void | setWorkingDirectory(Path newDir)Set the current working directory for the given file system. | 
append, append, areSymlinksEnabled, cancelDeleteOnExit, canonicalizeUri, checkPath, clearStatistics, close, closeAll, closeAllForUGI, completeLocalOutput, concat, copyFromLocalFile, copyFromLocalFile, copyFromLocalFile, copyFromLocalFile, copyToLocalFile, copyToLocalFile, copyToLocalFile, create, create, create, create, create, create, create, create, create, create, create, create, createNewFile, createNonRecursive, createNonRecursive, createNonRecursive, createSnapshot, createSnapshot, createSymlink, delete, deleteOnExit, deleteSnapshot, enableSymlinks, exists, fixRelativePart, get, get, get, getAclStatus, getAllStatistics, getBlockSize, getCanonicalUri, getContentSummary, getDefaultBlockSize, getDefaultBlockSize, getDefaultReplication, getDefaultReplication, getDefaultUri, getFileBlockLocations, getFileBlockLocations, getFileChecksum, getFileChecksum, getFileLinkStatus, getFileSystemClass, getFSofPath, getInitialWorkingDirectory, getLength, getLinkTarget, getLocal, getName, getNamed, getReplication, getServerDefaults, getServerDefaults, getStatistics, getStatistics, getStatus, getStatus, getUsed, getXAttr, getXAttrs, getXAttrs, globStatus, globStatus, isDirectory, isFile, listCorruptFileBlocks, listFiles, listLocatedStatus, listLocatedStatus, listStatus, listStatus, listStatus, listStatusIterator, listXAttrs, makeQualified, mkdirs, mkdirs, modifyAclEntries, moveFromLocalFile, moveFromLocalFile, moveToLocalFile, newInstance, newInstance, newInstance, newInstanceLocal, open, primitiveCreate, primitiveMkdir, primitiveMkdir, printStatistics, processDeleteOnExit, removeAcl, removeAclEntries, removeDefaultAcl, removeXAttr, rename, renameSnapshot, resolveLink, resolvePath, setAcl, setDefaultUri, setDefaultUri, setOwner, setPermission, setReplication, setTimes, setVerifyChecksum, setWriteChecksum, setXAttr, setXAttr, startLocalOutput, supportsSymlinks, truncategetConf, setConfpublic static final org.apache.commons.logging.Log LOG
public static final int DEFAULT_BUFFER_SIZE
public static final int DEFAULT_BLOCK_SIZE
public static final String FS_FTP_USER_PREFIX
public static final String FS_FTP_HOST
public static final String FS_FTP_HOST_PORT
public static final String FS_FTP_PASSWORD_PREFIX
public static final String E_SAME_DIRECTORY_ONLY
public FTPFileSystem()
public String getScheme()
getScheme in class FileSystemftpprotected int getDefaultPort()
getDefaultPort in class FileSystempublic void initialize(URI uri, Configuration conf) throws IOException
FileSysteminitialize in class FileSystemuri - a uri whose authority section names the host, port, etc.
   for this FileSystemconf - the configurationIOExceptionpublic FSDataInputStream open(Path file, int bufferSize) throws IOException
FileSystemopen in class FileSystemfile - the file name to openbufferSize - the size of the buffer to be used.IOExceptionpublic FSDataOutputStream create(Path file, FsPermission permission, boolean overwrite, int bufferSize, short replication, long blockSize, Progressable progress) throws IOException
create in class FileSystemfile - the file name to openoverwrite - if a file with this name already exists, then if true,
   the file will be overwritten, and if false an error will be thrown.bufferSize - the size of the buffer to be used.replication - required block replication for the file.IOExceptionFileSystem.setPermission(Path, FsPermission)public FSDataOutputStream append(Path f, int bufferSize, Progressable progress) throws IOException
append in class FileSystemf - the existing file to be appended.bufferSize - the size of the buffer to be used.progress - for reporting progress if it is not null.IOExceptionpublic boolean delete(Path file, boolean recursive) throws IOException
FileSystemdelete in class FileSystemfile - the path to delete.recursive - if path is a directory and set to 
 true, the directory is deleted else throws an exception. In
 case of a file the recursive can be set to either true or false.IOExceptionpublic URI getUri()
FileSystemgetUri in class FileSystempublic FileStatus[] listStatus(Path file) throws IOException
FileSystemlistStatus in class FileSystemfile - given pathFileNotFoundException - when the path does not exist;
         IOException see specific implementationIOExceptionpublic FileStatus getFileStatus(Path file) throws IOException
FileSystemgetFileStatus in class FileSystemfile - The path we want information fromFileNotFoundException - when the path does not exist;
         IOException see specific implementationIOExceptionpublic boolean mkdirs(Path file, FsPermission permission) throws IOException
FileSystemmkdirs in class FileSystemfile - path to createpermission - to apply to fIOExceptionpublic boolean rename(Path src, Path dst) throws IOException
FileSystemrename in class FileSystemsrc - path to be renameddst - new path after renameIOException - on failurepublic Path getWorkingDirectory()
FileSystemgetWorkingDirectory in class FileSystempublic Path getHomeDirectory()
FileSystemgetHomeDirectory in class FileSystempublic void setWorkingDirectory(Path newDir)
FileSystemsetWorkingDirectory in class FileSystemCopyright © 2016 Apache Software Foundation. All rights reserved.