public class FTPFileSystem extends FileSystem
A FileSystem
backed by an FTP client provided by Apache Commons Net.
FileSystem.Statistics
限定符和类型 | 字段和说明 |
---|---|
static int |
DEFAULT_BLOCK_SIZE |
static int |
DEFAULT_BUFFER_SIZE |
static org.apache.commons.logging.Log |
LOG |
FS_DEFAULT_NAME_KEY, statistics
构造器和说明 |
---|
FTPFileSystem() |
限定符和类型 | 方法和说明 |
---|---|
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)
已过时。
Use delete(Path, boolean) instead
|
boolean |
delete(Path file,
boolean recursive)
Delete a file.
|
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.
|
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.
|
addFileSystemForTesting, append, append, checkPath, clearStatistics, close, closeAll, closeAllForUGI, completeLocalOutput, concat, copyFromLocalFile, copyFromLocalFile, copyFromLocalFile, copyFromLocalFile, copyToLocalFile, copyToLocalFile, create, create, create, create, create, create, create, create, create, create, createNewFile, createNonRecursive, createNonRecursive, deleteOnExit, exists, get, get, get, getAllStatistics, getBlockSize, getCacheSize, getCanonicalServiceName, getCanonicalUri, getContentSummary, getDefaultBlockSize, getDefaultBlockSize, getDefaultPort, getDefaultReplication, getDefaultReplication, getDefaultUri, getDelegationToken, getFileBlockLocations, getFileChecksum, getLength, getLocal, getName, getNamed, getReplication, getStatistics, getStatistics, getUsed, globStatus, globStatus, isDirectory, isFile, listStatus, listStatus, listStatus, makeQualified, mkdirs, mkdirs, moveFromLocalFile, moveFromLocalFile, moveToLocalFile, open, printStatistics, processDeleteOnExit, setDefaultUri, setDefaultUri, setOwner, setPermission, setReplication, setTimes, setVerifyChecksum, startLocalOutput
getConf, setConf
public static final org.apache.commons.logging.Log LOG
public static final int DEFAULT_BUFFER_SIZE
public static final int DEFAULT_BLOCK_SIZE
public void initialize(URI uri, Configuration conf) throws IOException
FileSystem
initialize
在类中 FileSystem
uri
- a uri whose authority section names the host, port, etc.
for this FileSystemconf
- the configurationIOException
public FSDataInputStream open(Path file, int bufferSize) throws IOException
FileSystem
open
在类中 FileSystem
file
- the file name to openbufferSize
- the size of the buffer to be used.IOException
public FSDataOutputStream create(Path file, FsPermission permission, boolean overwrite, int bufferSize, short replication, long blockSize, Progressable progress) throws IOException
create
在类中 FileSystem
file
- 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.IOException
FileSystem.setPermission(Path, FsPermission)
public FSDataOutputStream append(Path f, int bufferSize, Progressable progress) throws IOException
append
在类中 FileSystem
f
- the existing file to be appended.bufferSize
- the size of the buffer to be used.progress
- for reporting progress if it is not null.IOException
@Deprecated public boolean delete(Path file) throws IOException
delete
在类中 FileSystem
IOException
public boolean delete(Path file, boolean recursive) throws IOException
FileSystem
delete
在类中 FileSystem
file
- 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.IOException
public URI getUri()
FileSystem
getUri
在类中 FileSystem
public FileStatus[] listStatus(Path file) throws IOException
FileSystem
listStatus
在类中 FileSystem
file
- given pathIOException
public FileStatus getFileStatus(Path file) throws IOException
FileSystem
getFileStatus
在类中 FileSystem
file
- The path we want information fromFileNotFoundException
- when the path does not exist;
IOException see specific implementationIOException
public boolean mkdirs(Path file, FsPermission permission) throws IOException
FileSystem
mkdirs
在类中 FileSystem
IOException
public boolean rename(Path src, Path dst) throws IOException
FileSystem
rename
在类中 FileSystem
IOException
public Path getWorkingDirectory()
FileSystem
getWorkingDirectory
在类中 FileSystem
public Path getHomeDirectory()
FileSystem
getHomeDirectory
在类中 FileSystem
public void setWorkingDirectory(Path newDir)
FileSystem
setWorkingDirectory
在类中 FileSystem
Copyright © 2009 The Apache Software Foundation