Path.getAttribute所在位置是kotlin.io.path / java.nio.file.Path.getAttribute,其相关用法介绍如下。

用法:

fun Path.getAttribute(
    attribute: String, 
    vararg options: LinkOption
): Any?

读取文件属性的值。

属性名称由 attribute 参数指定,可选前缀为属性视图名称:

[view_name:]attribute_name

未指定视图名称时,默认为 basic

异常

UnsupportedOperationException- 如果不支持属性视图。

IllegalArgumentException- 如果属性名称未指定或无法识别。

也可以看看

Files.getAttribute