文件不存在错误,但文件存在于快速位置

时间:2019-02-06 11:24:42

标签: xcode swift4 file-manager

    do {
        let filePath = "/Users/xxxxx/Desktop/Automation/demo1/test1.txt"
        let fileManager = FileManager.default
        if (fileManager.fileExists(atPath: filePath))
        {
            try fileManager.copyItem(atPath: filePath, toPath: "/Users/xxxxxx/Desktop/Automation/")
        }
        else
        {
            print("File does not exist")
        }
    }
    catch let error as NSError 
    {
        print("Ooops! Something went wrong: \(error)")
    }

在上面的代码中,我得到“文件不存在”,但我100%确保该位置存在该文件。

我在做错什么吗?

0 个答案:

没有答案