计算 xcode 中 .plist 文件的数量

发布于 2024-09-25 22:17:57 字数 118 浏览 1 评论 0原文

在 xcode 中,我有许多名为:ImageData1.plist、ImageData2.plist ...等的 .plist 文件,

如何获取以名称“ImageData”开头的 .plist 文件的数量?

In xcode, I have many .plist files called : ImageData1.plist, ImageData2.plist ... etc

how can I get the number of .plist files which start with the name "ImageData" ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪眸﹌ 2024-10-02 22:17:57

一个快速但肮脏的解决方案:

int count = 0;

for (int i = 1; i<100; i++) {
    NSString * format = @"ImageData%u";
    NSString * file = [[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:format,i] ofType:@"plist"];
    BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:file];

    if (fileExists) {
        count ++;
    } else {
        break;
    }
}

NSLog(@"-----> Number of files = %u", count);

如果序列中没有丢失文件(例如 ImageData1.plist、ImageData2.plist、ImageData4.plist...),则此方法有效。

A quick and dirty solution:

int count = 0;

for (int i = 1; i<100; i++) {
    NSString * format = @"ImageData%u";
    NSString * file = [[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:format,i] ofType:@"plist"];
    BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:file];

    if (fileExists) {
        count ++;
    } else {
        break;
    }
}

NSLog(@"-----> Number of files = %u", count);

This method works if you don't have missing files in the sequence (e.g. ImageData1.plist, ImageData2.plist, ImageData4.plist...)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文