我正在嘗試將文件寫入臨時目錄。我這樣做:寫入臨時目錄不起作用
NSString *_location = NSTemporaryDirectory();
NSString *_guid = [[NSCalendarDate calendarDate] descriptionWithCalendarFormat:@"%m%d%Y%H%M%S%F"];
_guid = [_guid stringByAppendingString:@".png"];
NSString *_tempFilePath = [NSString stringWithFormat:@"%@/%@", _location, _guid];
NSData *_temp_data = [imgRep representationUsingType: NSPNGFileType properties: nil];
[_temp_data writeToFile:_tempFilePath atomically: NO];
但它不適用於我。它不創建文件。有什麼問題?
P.S.我試圖在NSTemporaryDirectory中創建一個具有唯一名稱的目錄,然後在那裏寫入一個文件,但它也不起作用。
我注意到它不會在任何地方創建文件。試圖將位置設置爲用戶的文檔文件夾,但它不工作。
'_uid'和'_guid'? – trojanfoe
對不起,我在重寫代碼時犯了錯誤 – hockeyman