我正在尝试使用FileManager
的copyItem(at:path:)
将一些(媒体(文件从一个文件夹复制到另一个文件夹,但是出现错误:
CFURLCopyResourcePropertyForKey失败,因为它传递了一个没有方案的URL。 错误域=NSCocoa错误域代码=262"无法打开该文件,因为不支持指定的 URL 类型。">
我使用的是 Xcode 9 beta 和 Swift 4。
let fileManager = FileManager.default
let allowedMediaFiles = ["mp4", "avi"]
func isMediaFile(_ file: URL) -> Bool {
return allowedMediaFiles.contains(file.pathExtension)
}
func getMediaFiles(from folder: URL) -> [URL] {
guard let enumerator = fileManager.enumerator(at: folder, includingPropertiesForKeys: []) else { return [] }
return enumerator.allObjects
.flatMap {$0 as? URL}
.filter { $0.lastPathComponent.first != "." && isMediaFile($0)
}
}
func move(files: [URL], to location: URL) {
do {
for fileURL in files {
try fileManager.copyItem(at: fileURL, to: location)
}
} catch (let error) {
print(error)
}
}
let mediaFilesURL = URL(string: "/Users/xxx/Desktop/Media/")!
let moveToFolder = URL(string: "/Users/xxx/Desktop/NewFolder/")!
let mediaFiles = getMediaFiles(from: mediaFilesURL)
move(files: mediaFiles, to: moveToFolder)
发生此错误是因为
URL(string: "/Users/xxx/Desktop/Media/")!
创建不带方案的 URL。您可以使用
URL(string: "file:///Users/xxx/Desktop/Media/")!
或者,更简单地说,
URL(fileURLWithPath: "/Users/xxx/Desktop/Media/")
另请注意,在fileManager.copyItem()
中,目的地必须 包括文件名,而不仅仅是目标 目录:
try fileManager.copyItem(at: fileURL,
to: location.appendingPathComponent(fileURL.lastPathComponent))