查询或删除重新分析点。 The fsutil reparsepoint command is typically used by support professionals.
重新分析点是具有可定义属性的 NTFS 文件系统对象,其中包含用户定义的数据。 它们用于:
扩展输入/输出 (I/O) 子系统中的功能。
充当目录交接点和卷装入点。
将某些文件标记为文件系统筛选器驱动程序的特殊文件。
Syntax
fsutil reparsepoint [query] <filename>
fsutil reparsepoint [delete] <filename>
Parameters
Parameter | Description |
---|---|
查询 | 检索与指定句柄标识的文件或目录关联的重新分析点数据。 |
删除 | 从指定句柄标识的文件或目录中删除重新分析点,但不删除文件或目录。 |
<filename> |
Specifies the full path to the file including the file name and extension, for example C:\documents\filename.txt. |
Remarks
- 当程序设置重新分析点时,它将存储此数据和重新分析标记,用于唯一标识它正在存储的数据。 当文件系统打开具有重新分析点的文件时,它会尝试查找关联的文件系统筛选器。 如果找到文件系统筛选器,筛选器将按照重新分析数据的指示处理文件。 If no file system filter is found, the File open operation fails.
Examples
To retrieve reparse point data associated with c:\server, type:
fsutil reparsepoint query c:\server
若要从指定文件或目录中删除重新分析点,请使用以下格式:
fsutil reparsepoint delete c:\server