我创建了一个应用程序,可以将本地保存的文件上传到amazon服务器
我在这个应用程序中使用NSURLSessionUploadTask
上传文件,
但在这里
@try {
task = [[self backgroundURLSession] uploadTaskWithRequest:request2 fromFile:url];
[task resume];
}
@catch (NSException *exception) {
NSLog(@"exception %@",exception);
}
我收到,无效的网址文件://网址异常,然后我检查了我的文件网址,它是
/var/mobile/Containers/Data/Application/7494DF09-866A-4088-AC73-710A21A6569A/Documents/xxxx/1417516256_event_138_footage_1209_cam_001.mp4
如何将我的网址更改为 file:// 类型,以及file的含义是什么://它位于何处