gpt4 book ai didi

objective-c - CPU因attributesOfItemAtPath :error: 而引发

转载 作者:行者123 更新时间:2023-12-03 16:29:12 25 4
gpt4 key购买 nike

我正在使用 [NSFileManager attributeOfItemAtPath:error:] 函数来获取文件的属性。但有时我的应用程序 cpu 会达到 100%。我正在使用此函数处理 100k(大约)个文件。
我的应用程序示例:

                                2128 -[NSFileManager attributesOfItemAtPath:error:]
2128 +[NSFileAttributes _attributesAtPath:partialReturn:filterResourceFork:error:]
2123 _attributesAtPath
2072 listxattr
29 realloc
18 realloc
11 szone_size
22 _attributesAtPath
5 _sysenter_trap

谁能帮帮我吗?

最佳答案

我正在使用stat

#import <sys/stat.h>

struct stat stat1;
if( stat([inFilePath fileSystemRepresentation], &stat1) )
// something is wrong
long long size = stat1.st_size;
printf("Size: %lld\n", stat1.st_size);

关于objective-c - CPU因attributesOfItemAtPath :error: 而引发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10580422/

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