0
可能重複:
Why does the value from NSFileSystemFreeSize differ from the free size reported in the iOS Settings?錯誤的文件系統的相關信息
我有這樣的代碼:
NSError *error = nil;
NSString *outputDirectory = @"/Users/myuser/Desktop"
NSDictionary *fileSystemAttributes =
[fileManager attributesOfFileSystemForPath:outputDirectory error:&error];
if (!error) {
uint64_t freeSpace = (uint64_t)[fileSystemAttributes objectForKey:NSFileSystemFreeSize];
NSLog(@"Free space in bytes: %lld.",freeSpace);
}
當我執行的代碼,它給了我大約45 TB的可用空間,這是完全錯誤的!
我試圖與
outputDirectory = @"/";
,但它也將失敗。
我錯過了什麼嗎? 謝謝你的時間。
它的工作,謝謝! – Zi0P4tch0