Uses of Class
org.apache.hadoop.fs.FileStatus

Packages that use FileStatus
org.apache.hadoop.filecache   
org.apache.hadoop.fs An abstract file system API. 
org.apache.hadoop.fs.ftp   
org.apache.hadoop.fs.s3 A distributed, block-based implementation of FileSystem that uses Amazon S3 as a backing store. 
org.apache.hadoop.fs.s3native A distributed implementation of FileSystem for reading and writing files on Amazon S3
org.apache.hadoop.fs.viewfs   
org.apache.hadoop.mapred   
org.apache.hadoop.mapred.lib   
org.apache.hadoop.mapreduce.lib.input   
org.apache.hadoop.mapreduce.v2.hs   
 

Uses of FileStatus in org.apache.hadoop.filecache
 

Methods in org.apache.hadoop.filecache that return FileStatus
static FileStatus DistributedCache.getFileStatus(Configuration conf, URI cache)
          Deprecated. 
 

Uses of FileStatus in org.apache.hadoop.fs
 

Subclasses of FileStatus in org.apache.hadoop.fs
 class LocatedFileStatus
          This class defines a FileStatus that includes a file's block locations.
 

Methods in org.apache.hadoop.fs that return FileStatus
 FileStatus FilterFileSystem.getFileLinkStatus(Path f)
           
 FileStatus FileContext.getFileLinkStatus(Path f)
          Return a file status object that represents the path.
 FileStatus LocalFileSystem.getFileLinkStatus(Path f)
           
 FileStatus RawLocalFileSystem.getFileLinkStatus(Path f)
          Return a FileStatus representing the given path.
 FileStatus FileSystem.getFileLinkStatus(Path f)
          See FileContext.getFileLinkStatus(Path)
 FileStatus AbstractFileSystem.getFileLinkStatus(Path f)
          The specification of this method matches that of FileContext.getFileLinkStatus(Path) except that an UnresolvedLinkException may be thrown if a symlink is encountered in the path leading up to the final path component.
 FileStatus FilterFileSystem.getFileStatus(Path f)
          Get file status.
 FileStatus FileContext.getFileStatus(Path f)
          Return a file status object that represents the path.
 FileStatus RawLocalFileSystem.getFileStatus(Path f)
           
abstract  FileStatus FileSystem.getFileStatus(Path f)
          Return a file status object that represents the path.
abstract  FileStatus AbstractFileSystem.getFileStatus(Path f)
          The specification of this method matches that of FileContext.getFileStatus(Path) except that an UnresolvedLinkException may be thrown if a symlink is encountered in the path.
 FileStatus[] FileSystem.globStatus(Path pathPattern)
          Return all the files that match filePattern and are not checksum files.
 FileStatus[] FileSystem.globStatus(Path pathPattern, PathFilter filter)
          Return an array of FileStatus objects whose path names match pathPattern and is accepted by the user-supplied path filter.
 FileStatus[] FilterFileSystem.listStatus(Path f)
          List files in a directory.
 FileStatus[] ChecksumFileSystem.listStatus(Path f)
          List the statuses of the files/directories in the given path if the path is a directory.
 FileStatus[] RawLocalFileSystem.listStatus(Path f)
           
abstract  FileStatus[] FileSystem.listStatus(Path f)
          List the statuses of the files/directories in the given path if the path is a directory.
abstract  FileStatus[] AbstractFileSystem.listStatus(Path f)
          The specification of this method matches that of FileContext.Util.listStatus(Path) except that Path f must be for this file system.
 FileStatus[] FileSystem.listStatus(Path[] files)
          Filter files/directories in the given list of paths using default path filter.
 FileStatus[] FileSystem.listStatus(Path[] files, PathFilter filter)
          Filter files/directories in the given list of paths using user-supplied path filter.
 FileStatus[] FileSystem.listStatus(Path f, PathFilter filter)
          Filter files/directories in the given path using the user-supplied path filter.
 

Methods in org.apache.hadoop.fs that return types with arguments of type FileStatus
 org.apache.hadoop.fs.RemoteIterator<FileStatus> FileContext.listStatus(Path f)
          List the statuses of the files/directories in the given path if the path is a directory.
 org.apache.hadoop.fs.RemoteIterator<FileStatus> AbstractFileSystem.listStatusIterator(Path f)
          The specification of this method matches that of FileContext.listStatus(Path) except that Path f must be for this file system.
 

Methods in org.apache.hadoop.fs with parameters of type FileStatus
static boolean FileUtil.copy(FileSystem srcFS, FileStatus srcStatus, FileSystem dstFS, Path dst, boolean deleteSource, boolean overwrite, Configuration conf)
          Copy files between FileSystems.
 BlockLocation[] FilterFileSystem.getFileBlockLocations(FileStatus file, long start, long len)
           
 BlockLocation[] FileSystem.getFileBlockLocations(FileStatus file, long start, long len)
          Return an array containing hostnames, offset and size of portions of the given file.
static Path[] FileUtil.stat2Paths(FileStatus[] stats)
          convert an array of FileStatus to an array of Path
static Path[] FileUtil.stat2Paths(FileStatus[] stats, Path path)
          convert an array of FileStatus to an array of Path.
 

Constructors in org.apache.hadoop.fs with parameters of type FileStatus
FileStatus(FileStatus other)
          Copy constructor.
LocatedFileStatus(FileStatus stat, BlockLocation[] locations)
          Constructor
 

Uses of FileStatus in org.apache.hadoop.fs.ftp
 

Methods in org.apache.hadoop.fs.ftp that return FileStatus
 FileStatus FTPFileSystem.getFileStatus(Path file)
           
 FileStatus[] FTPFileSystem.listStatus(Path file)
           
 

Uses of FileStatus in org.apache.hadoop.fs.s3
 

Methods in org.apache.hadoop.fs.s3 that return FileStatus
 FileStatus S3FileSystem.getFileStatus(Path f)
          FileStatus for S3 file systems.
 FileStatus[] S3FileSystem.listStatus(Path f)
           
 

Uses of FileStatus in org.apache.hadoop.fs.s3native
 

Methods in org.apache.hadoop.fs.s3native that return FileStatus
 FileStatus NativeS3FileSystem.getFileStatus(Path f)
           
 FileStatus[] NativeS3FileSystem.listStatus(Path f)
           If f is a file, this method will make a single call to S3.
 

Uses of FileStatus in org.apache.hadoop.fs.viewfs
 

Methods in org.apache.hadoop.fs.viewfs that return FileStatus
 FileStatus ViewFs.getFileLinkStatus(Path f)
           
 FileStatus ViewFileSystem.getFileStatus(Path f)
           
 FileStatus ViewFs.getFileStatus(Path f)
           
 FileStatus[] ViewFileSystem.listStatus(Path f)
           
 FileStatus[] ViewFs.listStatus(Path f)
           
 

Methods in org.apache.hadoop.fs.viewfs that return types with arguments of type FileStatus
 org.apache.hadoop.fs.RemoteIterator<FileStatus> ViewFs.listStatusIterator(Path f)
           
 

Methods in org.apache.hadoop.fs.viewfs with parameters of type FileStatus
 BlockLocation[] ViewFileSystem.getFileBlockLocations(FileStatus fs, long start, long len)
           
 

Uses of FileStatus in org.apache.hadoop.mapred
 

Methods in org.apache.hadoop.mapred that return FileStatus
protected  FileStatus[] FileInputFormat.listStatus(JobConf job)
          List input directories.
protected  FileStatus[] SequenceFileInputFormat.listStatus(JobConf job)
           
 

Method parameters in org.apache.hadoop.mapred with type arguments of type FileStatus
protected  void FileInputFormat.addInputPathRecursively(List<FileStatus> result, FileSystem fs, Path path, PathFilter inputFilter)
          Add files in the input path recursively into the results.
 

Uses of FileStatus in org.apache.hadoop.mapred.lib
 

Methods in org.apache.hadoop.mapred.lib that return FileStatus
protected  FileStatus[] CombineFileInputFormat.listStatus(JobConf job)
          List input directories.
 

Uses of FileStatus in org.apache.hadoop.mapreduce.lib.input
 

Methods in org.apache.hadoop.mapreduce.lib.input that return types with arguments of type FileStatus
protected  List<FileStatus> FileInputFormat.listStatus(JobContext job)
          List input directories.
protected  List<FileStatus> SequenceFileInputFormat.listStatus(JobContext job)
           
 

Methods in org.apache.hadoop.mapreduce.lib.input with parameters of type FileStatus
protected  BlockLocation[] CombineFileInputFormat.getFileBlockLocations(FileSystem fs, FileStatus stat)
           
static List<FileSplit> NLineInputFormat.getSplitsForFile(FileStatus status, Configuration conf, int numLinesPerSplit)
           
 

Method parameters in org.apache.hadoop.mapreduce.lib.input with type arguments of type FileStatus
protected  void FileInputFormat.addInputPathRecursively(List<FileStatus> result, FileSystem fs, Path path, PathFilter inputFilter)
          Add files in the input path recursively into the results.
 

Uses of FileStatus in org.apache.hadoop.mapreduce.v2.hs
 

Methods in org.apache.hadoop.mapreduce.v2.hs that return types with arguments of type FileStatus
protected  List<FileStatus> HistoryFileManager.findTimestampedDirectories()
          Finds all history directories with a timestamp component by scanning the filesystem.
protected  List<FileStatus> HistoryFileManager.scanDirectoryForHistoryFiles(Path path, FileContext fc)
           
 

Methods in org.apache.hadoop.mapreduce.v2.hs with parameters of type FileStatus
protected  boolean HistoryFileManager.deleteDir(FileStatus serialDir)
           
 



Copyright © 2014 Apache Software Foundation. All Rights Reserved.