我尝试使用FileManager
copyItem(at:path:)
将一些(媒体)文件从一个文件夹复制到另一个文件夹,但我收到了错误:
CFURLCopyResourcePropertyForKey失败,因为它传递了一个没有方案的URL 错误域= NSCocoaErrorDomain代码= 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)
答案 0 :(得分:9)
发生错误是因为
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))