3

我正在尝试使用 NSFileManager 将临时文件复制到另一个位置。但是它失败并抱怨其中一个文件不存在。

 //Copy temp file
    NSError *error;
    BOOL exists = [fileManager fileExistsAtPath:chapterFileTemp];
    exists = [fileManager fileExistsAtPath:chapterFile];

    [fileManager copyItemAtURL:[NSURL fileURLWithPath:chapterFileTemp]
                         toURL:[NSURL fileURLWithPath:chapterFile]
                         error:&error];

    //Delete temp path
    [fileManager removeItemAtURL:[NSURL fileURLWithPath:chapterFileTemp] error:&error];

我在复制操作时遇到错误

(错误域=NSCocoaErrorDomain 代码=260“操作无法完成。(Cocoa 错误 260。)”UserInfo=0x1c5190b0 {NSFilePath=/var/mobile/Applications/57727CCD-88AD-4D84-8C78-EA8100645C9B/Documents/119 /myFileTemp.temp, NSUnderlyingError=0x1c527960 “操作无法完成。没有这样的文件或目录”)。

现在第一个 BOOL 返回 YES,第二个返回 NO。这是预期的。

失败的原因可能是什么

谢谢。

4

2 回答 2

3

当目标路径缺少目录时,这是可能的。确保要复制源文件的位置包含所有必需的目录。

于 2013-06-07T16:22:37.903 回答
2

如果如 +Apurv 所述,目标目录不存在,那么您应该做两件事:

  1. 确保您的目标位置 ,chapterFile是在您有权访问的位置创建的。iOS 应用程序在可以写入文件的位置受到限制;您需要创建一个符合 iOS App 限制的路径。见URLsForDirectory:inDomains
  2. 调用createDirectoryAtPath:withIntermediateDirectories:attributes:error:以创建目标目录。

在这两件事之后,该copyItem方法应该起作用。

使用,从NSFileManager

- (BOOL)createDirectoryAtPath:(NSString *)path
  withIntermediateDirectories:(BOOL)createIntermediates
                   attributes:(NSDictionary *)attributes
                        error:(NSError **)error

createIntermediatesas YES

于 2013-06-07T16:56:03.127 回答