为什么这不会在我的桌面上创建一个文本文件?错误描述为“null”。
NSString* path = @"/Users/amr/Desktop/test5.txt";
NSError* error = nil;
NSData* data = [NSData dataWithContentsOfFile:@"hello"];
[data writeToFile:path options:NSDataWritingAtomic error:nil];
NSLog(@"the error is %@",[error localizedDescription]);