如何在OS X中移动文件并创建缺少的目录?

问题描述 投票:4回答:2

我想将OSX中的文件移动到另一个目录:

func moveFile(currentPath currentPath: String, targetPath: String) {

let fileManager = NSFileManager.defaultManager()

do { try fileManager.moveItemAtPath(currentPath, toPath: targetPath) }
catch let error as NSError { print(error.description) }

}

一切正常,除了目标目录不存在的情况。我发现.isWritableFileAtPath可能会有所帮助。

但是,在我声明的函数中,我使用完整的文件路径(包括文件名)。

如何从路径中拆分文件名或更多:如果需要,如何在移动文件之前强制Swift创建目录?

macos cocoa swift2 nsfilemanager
2个回答
5
投票

在过去,我用类似下面的代码的代码解决了这个问题。基本上,您只需检查表示您要创建的文件的父目录的路径中是否存在文件。如果它不存在,则在路径中创建它以及它上面的所有文件夹也不存在。

func moveFile(currentPath currentPath: String, targetPath: String) {
    let fileManager = NSFileManager.defaultManager()
    let parentPath = (targetPath as NSString).stringByDeletingLastPathComponent()
    var isDirectory: ObjCBool = false
    if !fileManager.fileExistsAtPath(parentPath, isDirectory:&isDirectory) {
        fileManager.createDirectoryAtPath(parentPath, withIntermediateDirectories: true, attributes: nil)

        // Check to see if file exists, move file, error handling
    }
    else if isDirectory {
        // Check to see if parent path is writable, move file, error handling
    }
    else {
        // Parent path exists and is a file, error handling
    }
}

您可能还想使用fileExistsAtPath:isDirectory:variant,以便处理其他错误情况。同样如此


0
投票

我已将此扩展添加到FileManager以实现此目的

extension FileManager {

    func moveItemCreatingIntermediaryDirectories(at: URL, to: URL) throws {
        let parentPath = to.deletingLastPathComponent()
        if !fileExists(atPath: parentPath.path) {
            try createDirectory(at: parentPath, withIntermediateDirectories: true, attributes: nil)
        }
        try moveItem(at: at, to: to)
    }

}
© www.soinside.com 2019 - 2024. All rights reserved.