我使用
try FileManager.default.copyItem(at: inFile, to: outFile)
问题是这是一个有问题的网络上的大文件,并且处理是由无人看管的东西完成的。我希望能够告诉FileManager只花一分钟来做复制,否则没有。
我好像在文档中找不到它,我今天的秉赋很弱。
我最终用dispatchWorkItem和自定义错误结构体扩展了FileManager。
public extension FileManager {
struct TimeoutError:Error{
let source:URL
let destination:URL
let timeOut:Double
}
func timedOutCopy(at source:URL, to destionation:URL, timeOut:Double = 15.0) throws {
var cpError:Error?
let d = DispatchWorkItem(block: {
do {
try self.copyItem(at: source, to: destionation)
} catch {
cpError = error
}
})
DispatchQueue.global().async(execute: d)
if d.wait(wallTimeout: DispatchWallTime.now() + timeOut) != .success {
d.cancel()
throw TimeoutError(source: source, destination: destionation, timeOut: timeOut)
} else {
if let cpError = cpError {throw cpError}
}
}
}