我的 MAC 应用程序需要创建具有固定大小的文件。示例:我要创建的文件名称为:test.txt,固定大小:1069 字节。我怎样才能做到这一点?我使用下面的代码来编写文件:
NSError *err;
NSString* arrayText = [writeArray componentsJoinedByString: @"\n"];
[filemgr createFileAtPath:[NSString stringWithFormat:@"%@/test.txt",sd_url] contents:nil attributes:nil];
[arrayText writeToFile:[NSString stringWithFormat:@"%@/test.txt",sd_url] atomically:YES encoding:NSUTF8StringEncoding error:&err];
谢谢