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

用法:

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

设置文件属性的值。

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

[view_name:]attribute_name

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

异常

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

IllegalArgumentException- 如果未指定或无法识别属性名称,或者属性值的类型正确但值不合适。

ClassCastException- 如果属性值不是预期的类型

也可以看看

Files.setAttribute