gpt4 book ai didi

iphone - 检查文件是否为空?

转载 作者:行者123 更新时间:2023-11-28 19:15:06 25 4
gpt4 key购买 nike

我正在构建一个应用程序来检查 csv 文件的内容。我能够正确检查行和列。现在,我想知道整个文件是否为空。

最佳答案

如果你所说的“空”是指它里面绝对没有任何东西(0 字节),你可以这样做:

NSFileManager *manager = [NSFileManager defaultManager];
if ([manager fileExistsAtPath:path]) {
NSDictionary *attributes = [manager attributesOfItemAtPath:path error:nil];
unsigned long long size = [attributes fileSize];
if (attributes && size == 0) {
// file exists, but is empty.
}
}

关于iphone - 检查文件是否为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12695954/

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