菜鸟教程小白 发表于 2022-12-13 10:06:19

iphone - 将通配 rune 件名从主包复制到文档?


                                            <p><p>我可以使用下面的代码通过文件名将文件从我的主包复制到我的 Documents 目录,但是如何根据通配符进行复制?例如,我有几个名为 myimageX.jpg 的文件(x 代表一个随机数)。我想遍历我的主包中包含的所有它们,如果它们不存在于 Documents 中,请复制它们。</p>

<pre><code>BOOL success;
NSFileManager *fileManager = ;

myfileName = @&#34;myimage322.jpg&#34;;
documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
documentsDir = ;
filePath = ;

success = ;
if(success) return;
NSString *filePathFromApp = [[ resourcePath] stringByAppendingPathComponent:myfileName];
;

;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>方法 fileExistsAtPath 会很有帮助。首先枚举bundle的内容,检查Documents中是否存在相同的文件(相同的文件名)。</p>

<p>这是怎么做的:</p>

<pre><code>NSString *docsDir = ;
NSString *bundleDir = [ resourcePath];

NSFileManager *localFileManager=[ init];
NSDirectoryEnumerator *dirEnum = ;

NSString *file;

while (file = ) {

    if (![ fileExistsAtPath: ]) {

      [ copyItemAtPath:
                                                toPath: error:nil];         
    }

}

;
</code></pre>

<p>这是来自 NSFileManager 类引用的代码的修改版本,可在此处找到:
<a href="http://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSFileManager_Class/Reference/Reference.html" rel="noreferrer noopener nofollow">http://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSFileManager_Class/Reference/Reference.html</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 将通配 rune 件名从主包复制到文档?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8371419/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8371419/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 将通配 rune 件名从主包复制到文档?