gpt4 book ai didi

ios - 清除文件内容

转载 作者:可可西里 更新时间:2023-11-01 05:22:52 25 4
gpt4 key购买 nike

我正在尝试删除 iOS 的内容文本文件。

或者,我可以删除文件,然后在没有内容的情况下立即重新创建它。

对于此解决方案,我知道我可以使用 [fileManager removeItemAtPath:filePath error:&error]; 删除文件。重新创建文件对我来说是困难的部分。

我正在使用以下代码定位文件:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];

NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"myFile.txt"];

NSFileManager *fileManager = [NSFileManager defaultManager];

if([fileManager fileExistsAtPath:filePath])
{
[fileManager removeItemAtPath:filePath error:&error];
}

//code to recreate the same file, just with no content

最佳答案

尝试

-[[NSFileManager defaultManager] createFileAtPath:path contents:[NSData data] attributes:nil]

关于ios - 清除文件内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16315616/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com