11

如果我使用NSFileManager:URLForDirectory以下 URL 获取沙盒的应用程序支持目录:

file://localhost/var/mobile/Applications/EA80DE91-394C-4EAB-B269-1081C859BB0F/Library/Application%20Support/

但是,如果我NSFileManager:enumeratorAtURL用来搜索目录,我会得到以下形式的 URL:

file://localhost/private/var/mobile/Applications/EA80DE91-394C-4EAB-B269-1081C859BB0F/Library/Application%20Support/

这给我带来了问题,因为我正在执行 URL 搜索/替换操作,并且差异导致不匹配。我之前在其他地方遇到过这种差异,然后我的解决方案是使用 url 的路径(使用NSURL:path)而不是原始 URL,但是在这种情况下这不起作用,因为生成的路径是:

/var/mobile/Applications/EA80DE91-394C-4EAB-B269-1081C859BB0F/Library/Application Support
/private/var/mobile/Applications/EA80DE91-394C-4EAB-B269-1081C859BB0F/Library/Application Support/

我想要做的是:我的应用程序支持目录中可以有任意数量的文件,名称相同但位置不同,我需要提取相对于应用程序支持目录的路径。即如果我有以下

/Application Support/abc/file.dat
/ApplicationSupport/abc/def/file.dat

我希望能够提取“abc”和“abc/def”。我正在使用以下代码执行此操作:

NSArray *keys = [NSArray arrayWithObject:NSURLIsRegularFileKey];
NSDirectoryEnumerator *dirEnumerator = [self.fileManager enumeratorAtURL:[MyManager appSupportDirectory]
                                          includingPropertiesForKeys:keys
                                                             options:NSDirectoryEnumerationSkipsHiddenFiles
                                                        errorHandler:nil];
    for (NSURL *url in dirEnumerator)
    {
        if ( NSOrderedSame == [[url lastPathComponent] caseInsensitiveCompare:kFilename])
        {
            NSString *appSupportPath = [[MyManager appSupportDirectory] path];
            NSString *pathToFile = [url path];
            pathToFile = [pathToFile URLByDeletingLastPathComponent];
            NSString *subPath = [pathToFile  stringByReplacingOccurrencesOfString:appSupportPath withString:@""];

(MyManager:appSupportDirectory 调用 NSFileManager:URLForDirectory: 使用 NSApplicationSupportDirectory)

这在模拟器上运行良好,enumeratorAtURL:URLFOrDirectory:返回相同的路径,但由于它们在硬件上的差异,它失败了。

有没有办法获取enumeratorAtURL:URLForDirectory:返回相同的路径,或者如果没有,是否有另一种优雅的方式将子路径提取到我目前正在做的事情?

4

2 回答 2

7

var符号链接到/private/var/

打电话[url URLByResolvingSymlinksInPath]修复它。

请参阅iOS 文件路径上的 /private 前缀表示什么?进行更多讨论。

于 2013-04-16T00:11:05.530 回答
3

我不得不改为这样做:

NSDirectoryEnumerator *dirEnum = [self.fileManager enumeratorAtPath: [NSHomeDirectory() stringByAppendingPathComponent:@"/Library/Application Support/"]];
于 2012-07-18T19:07:45.577 回答