Documentation

The Java™ Tutorials
Hide TOC
Managing Metadata (File and File Store Attributes)管理元数据(文件和文件存储属性)
Trail: Essential Java Classes
Lesson: Basic I/O
Section: File I/O (Featuring NIO.2)

Managing Metadata (File and File Store Attributes)管理元数据(文件和文件存储属性)

The definition of metadata is "data about other data." 元数据的定义是“关于其他数据的数据”。With a file system, the data is contained in its files and directories, and the metadata tracks information about each of these objects: Is it a regular file, a directory, or a link? 对于文件系统,数据包含在其文件和目录中,元数据跟踪关于每个对象的信息:是常规文件、目录还是链接?What is its size, creation date, last modified date, file owner, group owner, and access permissions?它的大小、创建日期、上次修改日期、文件所有者、组所有者和访问权限是多少?

A file system's metadata is typically referred to as its file attributes. 文件系统的元数据通常称为其文件属性The Files class includes methods that can be used to obtain a single attribute of a file, or to set an attribute.Files类包括可用于获取文件的单个属性或设置属性的方法。

Methods方法 Comment注释
size(Path) Returns the size of the specified file in bytes.返回指定文件的大小(字节)。
isDirectory(Path, LinkOption) Returns true if the specified Path locates a file that is a directory.如果指定Path找到的文件是目录,则返回true
isRegularFile(Path, LinkOption...) Returns true if the specified Path locates a file that is a regular file.如果指定Path找到的文件是常规文件,则返回true
isSymbolicLink(Path) Returns true if the specified Path locates a file that is a symbolic link.如果指定Path找到的文件是符号链接,则返回true
isHidden(Path) Returns true if the specified Path locates a file that is considered hidden by the file system.如果指定Path找到被文件系统视为隐藏的文件,则返回true
getLastModifiedTime(Path, LinkOption...)
setLastModifiedTime(Path, FileTime)
Returns or sets the specified file's last modified time.返回或设置指定文件的上次修改时间。
getOwner(Path, LinkOption...)
setOwner(Path, UserPrincipal)
Returns or sets the owner of the file.返回或设置文件的所有者。
getPosixFilePermissions(Path, LinkOption...)
setPosixFilePermissions(Path, Set<PosixFilePermission>)
Returns or sets a file's POSIX file permissions.返回或设置文件的POSIX文件权限。
getAttribute(Path, String, LinkOption...)
setAttribute(Path, String, Object, LinkOption...)
Returns or sets the value of a file attribute.返回或设置文件属性的值。

If a program needs multiple file attributes around the same time, it can be inefficient to use methods that retrieve a single attribute. 如果一个程序几乎同时需要多个文件属性,那么使用检索单个属性的方法可能效率低下。Repeatedly accessing the file system to retrieve a single attribute can adversely affect performance. 重复访问文件系统以检索单个属性可能会对性能产生不利影响。For this reason, the Files class provides two readAttributes methods to fetch a file's attributes in one bulk operation.因此,Files类提供了两个readAttributes方法,用于在一次批量操作中获取文件的属性。

Method方法 Comment评论
readAttributes(Path, String, LinkOption...) Reads a file's attributes as a bulk operation. 作为批量操作读取文件的属性。The String parameter identifies the attributes to be read.String参数标识要读取的属性。
readAttributes(Path, Class<A>, LinkOption...) Reads a file's attributes as a bulk operation. 作为批量操作读取文件的属性。The Class<A> parameter is the type of attributes requested and the method returns an object of that class.Class<A>参数是请求的属性类型,该方法返回该类的对象。

Before showing examples of the readAttributes methods, it should be mentioned that different file systems have different notions about which attributes should be tracked. For this reason, related file attributes are grouped together into views. A view maps to a particular file system implementation, such as POSIX or DOS, or to a common functionality, such as file ownership.

The supported views are as follows:支持的视图如下所示:

A specific file system implementation might support only the basic file attribute view, or it may support several of these file attribute views. A file system implementation might support other attribute views not included in this API.

In most instances, you should not have to deal directly with any of the FileAttributeView interfaces. (If you do need to work directly with the FileAttributeView, you can access it via the getFileAttributeView(Path, Class<V>, LinkOption...) method.)

The readAttributes methods use generics and can be used to read the attributes for any of the file attributes views. The examples in the rest of this page use the readAttributes methods.

The remainder of this section covers the following topics:本节剩余部分将介绍以下主题:

Basic File Attributes基本文件属性

As mentioned previously, to read the basic attributes of a file, you can use one of the Files.readAttributes methods, which reads all the basic attributes in one bulk operation. This is far more efficient than accessing the file system separately to read each individual attribute. The varargs argument currently supports the LinkOption enum, NOFOLLOW_LINKS. Use this option when you do not want symbolic links to be followed.如果不希望跟随符号链接,请使用此选项。


A word about time stamps:关于时间戳的一句话: The set of basic attributes includes three time stamps: creationTime, lastModifiedTime, and lastAccessTime. Any of these time stamps might not be supported in a particular implementation, in which case the corresponding accessor method returns an implementation-specific value. When supported, the time stamp is returned as an FileTime object.

The following code snippet reads and prints the basic file attributes for a given file and uses the methods in the BasicFileAttributes class.下面的代码段读取并打印给定文件的基本文件属性,并使用BasicFileAttributes类中的方法。

Path file = ...;
BasicFileAttributes attr = Files.readAttributes(file, BasicFileAttributes.class);

System.out.println("creationTime: " + attr.creationTime());
System.out.println("lastAccessTime: " + attr.lastAccessTime());
System.out.println("lastModifiedTime: " + attr.lastModifiedTime());

System.out.println("isDirectory: " + attr.isDirectory());
System.out.println("isOther: " + attr.isOther());
System.out.println("isRegularFile: " + attr.isRegularFile());
System.out.println("isSymbolicLink: " + attr.isSymbolicLink());
System.out.println("size: " + attr.size());

In addition to the accessor methods shown in this example, there is a fileKey method that returns either an object that uniquely identifies the file or null if no file key is available.

Setting Time Stamps

The following code snippet sets the last modified time in milliseconds:

Path file = ...;
BasicFileAttributes attr =
    Files.readAttributes(file, BasicFileAttributes.class);
long currentTime = System.currentTimeMillis();
FileTime ft = FileTime.fromMillis(currentTime);
Files.setLastModifiedTime(file, ft);
}

DOS File AttributesDOS文件属性

DOS file attributes are also supported on file systems other than DOS, such as Samba. DOS文件属性在DOS以外的文件系统(如Samba)上也受支持。The following snippet uses the methods of the DosFileAttributes class.以下代码段使用DosFileAttributes类的方法。

Path file = ...;
try {
    DosFileAttributes attr =
        Files.readAttributes(file, DosFileAttributes.class);
    System.out.println("isReadOnly is " + attr.isReadOnly());
    System.out.println("isHidden is " + attr.isHidden());
    System.out.println("isArchive is " + attr.isArchive());
    System.out.println("isSystem is " + attr.isSystem());
} catch (UnsupportedOperationException x) {
    System.err.println("DOS file" +
        " attributes not supported:" + x);
}

However, you can set a DOS attribute using the setAttribute(Path, String, Object, LinkOption...) method, as follows:

Path file = ...;
Files.setAttribute(file, "dos:hidden", true);

POSIX File PermissionsPOSIX文件权限

POSIX is an acronym for Portable Operating System Interface for UNIX and is a set of IEEE and ISO standards designed to ensure interoperability among different flavors of UNIX. POSIX是UNIX便携式操作系统接口的首字母缩写,是一组IEEE和ISO标准,旨在确保不同风格UNIX之间的互操作性。If a program conforms to these POSIX standards, it should be easily ported to other POSIX-compliant operating systems.如果一个程序符合这些POSIX标准,它应该很容易移植到其他符合POSIX标准的操作系统。

Besides file owner and group owner, POSIX supports nine file permissions: read, write, and execute permissions for the file owner, members of the same group, and "everyone else."除了文件所有者和组所有者之外,POSIX还支持九种文件权限:文件所有者、同一组成员和“其他所有人”的读、写和执行权限。

The following code snippet reads the POSIX file attributes for a given file and prints them to standard output. 下面的代码片段读取给定文件的POSIX文件属性,并将其打印到标准输出。The code uses the methods in the PosixFileAttributes class.代码使用PosixFileAttributes类中的方法。

Path file = ...;
PosixFileAttributes attr =
    Files.readAttributes(file, PosixFileAttributes.class);
System.out.format("%s %s %s%n",
    attr.owner().getName(),
    attr.group().getName(),
    PosixFilePermissions.toString(attr.permissions()));

The PosixFilePermissions helper class provides several useful methods, as follows:PosixFilePermissions助手类提供了几种有用的方法,如下所示:

The following code snippet reads the attributes from one file and creates a new file, assigning the attributes from the original file to the new file:以下代码段从一个文件中读取属性并创建一个新文件,将原始文件中的属性指定给新文件:

Path sourceFile = ...;
Path newFile = ...;
PosixFileAttributes attrs =
    Files.readAttributes(sourceFile, PosixFileAttributes.class);
FileAttribute<Set<PosixFilePermission>> attr =
    PosixFilePermissions.asFileAttribute(attrs.permissions());
Files.createFile(file, attr);

The asFileAttribute method wraps the permissions as a FileAttribute. asFileAttribute方法将权限包装为FileAttributeThe code then attempts to create a new file with those permissions. 然后,代码尝试创建具有这些权限的新文件。Note that the umask also applies, so the new file might be more secure than the permissions that were requested.请注意,umask也适用,因此新文件可能比请求的权限更安全。

To set a file's permissions to values represented as a hard-coded string, you can use the following code:要将文件权限设置为表示为硬编码字符串的值,可以使用以下代码:

Path file = ...;
Set<PosixFilePermission> perms =
    PosixFilePermissions.fromString("rw-------");
FileAttribute<Set<PosixFilePermission>> attr =
    PosixFilePermissions.asFileAttribute(perms);
Files.setPosixFilePermissions(file, perms);

The Chmod example recursively changes the permissions of files in a manner similar to the chmod utility.

Setting a File or Group Owner设置文件或组所有者

To translate a name into an object you can store as a file owner or a group owner, you can use the UserPrincipalLookupService service. This service looks up a name or group name as a string and returns a UserPrincipal object representing that string. You can obtain the user principal look-up service for the default file system by using the FileSystem.getUserPrincipalLookupService method.

The following code snippet shows how to set the file owner by using the setOwner method:以下代码段显示了如何使用setOwner方法设置文件所有者:

Path file = ...;
UserPrincipal owner = file.GetFileSystem().getUserPrincipalLookupService()
        .lookupPrincipalByName("sally");
Files.setOwner(file, owner);

There is no special-purpose method in the Files class for setting a group owner. Files类中没有用于设置组所有者的专用方法。However, a safe way to do so directly is through the POSIX file attribute view, as follows:但是,直接执行此操作的安全方法是通过POSIX文件属性视图,如下所示:

Path file = ...;
GroupPrincipal group =
    file.getFileSystem().getUserPrincipalLookupService()
        .lookupPrincipalByGroupName("green");
Files.getFileAttributeView(file, PosixFileAttributeView.class)
     .setGroup(group);

User-Defined File Attributes

If the file attributes supported by your file system implementation aren't sufficient for your needs, you can use the UserDefinedAttributeView to create and track your own file attributes.如果文件系统实现支持的文件属性不足以满足您的需要,则可以使用UserDefinedAttributeView创建和跟踪您自己的文件属性。

Some implementations map this concept to features like NTFS Alternative Data Streams and extended attributes on file systems such as ext3 and ZFS. 一些实现将此概念映射到诸如NTFS替代数据流和文件系统(如ext3和ZFS)上的扩展属性等功能。Most implementations impose restrictions on the size of the value, for example, ext3 limits the size to 4 kilobytes.大多数实现对值的大小施加限制,例如,ext3将值的大小限制为4KB。

A file's MIME type can be stored as a user-defined attribute by using this code snippet:通过使用以下代码段,可以将文件的MIME类型存储为用户定义的属性:

Path file = ...;
UserDefinedFileAttributeView view = Files
    .getFileAttributeView(file, UserDefinedFileAttributeView.class);
view.write("user.mimetype",
           Charset.defaultCharset().encode("text/html");

To read the MIME type attribute, you would use this code snippet:要读取MIME类型属性,请使用以下代码段:

Path file = ...;
UserDefinedFileAttributeView view = Files
.getFileAttributeView(file,UserDefinedFileAttributeView.class);
String name = "user.mimetype";
ByteBuffer buf = ByteBuffer.allocate(view.size(name));
view.read(name, buf);
buf.flip();
String value = Charset.defaultCharset().decode(buf).toString();

The Xdd example shows how to get, set, and delete a user-defined attribute.Xdd示例演示如何获取、设置和删除用户定义的属性。


Note: In Linux, you might have to enable extended attributes for user-defined attributes to work. 在Linux中,可能必须启用扩展属性才能使用户定义的属性正常工作。If you receive an UnsupportedOperationException when trying to access the user-defined attribute view, you need to remount the file system. 如果在尝试访问用户定义的属性视图时收到UnsupportedOperationException,则需要重新装载文件系统。The following command remounts the root partition with extended attributes for the ext3 file system. 以下命令使用ext3文件系统的扩展属性重新装载根分区。If this command does not work for your flavor of Linux, consult the documentation. 如果此命令不适用于您的Linux版本,请参阅文档。
$ sudo mount -o remount,user_xattr /

If you want to make the change permanent, add an entry to /etc/fstab.如果要使更改永久化,请在/etc/fstab中添加一个条目。


File Store Attributes文件存储属性

You can use the FileStore class to learn information about a file store, such as how much space is available. 您可以使用FileStore类来了解有关文件存储的信息,例如可用空间大小。The getFileStore(Path) method fetches the file store for the specified file.getFileStore(Path)方法获取指定文件的文件存储。

The following code snippet prints the space usage for the file store where a particular file resides:以下代码段打印特定文件所在的文件存储的空间使用情况:

Path file = ...;
FileStore store = Files.getFileStore(file);

long total = store.getTotalSpace() / 1024;
long used = (store.getTotalSpace() -
             store.getUnallocatedSpace()) / 1024;
long avail = store.getUsableSpace() / 1024;

The DiskUsage example uses this API to print disk space information for all the stores in the default file system. DiskUsage示例使用此API打印默认文件系统中所有存储的磁盘空间信息。This example uses the getFileStores method in the FileSystem class to fetch all the file stores for the file system.本例使用FileSystem类中的getFileStores方法获取文件系统的所有文件存储。


Previous page: Moving a File or Directory
Next page: Reading, Writing, and Creating Files