我正在尝试检查 FileAttributeType。这是我比较的逻辑:-
let attributes = try fileManager.attributesOfItem(atPath: "/Users/AUSER/Desktop/Downloads")
print(attributes)
if (attributes[FileAttributeKey.type] as AnyObject? == FileAttributeType.typeSymbolicLink ){
print("YESSS \(attributes[FileAttributeKey.type])")
}
错误-> 二元运算符“==”不能应用于“AnyObject?”类型的操作数 和“文件属性类型”