|
|
1
3
*attributes = [filemanager attributesOfItemAtPath:path error:nil] ; 从行首删除“*”。你不需要它。正确答案是: attributes = [filemanager attributesOfItemAtPath:path error:nil] ; // no '*' before attributes |
|
|
2
0
|