如何使用Alamofire上传我在Documents / Inbox目录中的文件?
有很多主题,但它们都涵盖了上传照片,这不是我想要的。我想上传一个使用PHP的
的zip文件以下是我用来获取文件内容的内容,但我不确定这是否正确:
do {
let directoryContents = try FileManager.default.attributesOfItem(atPath: "\(NSHomeDirectory())/Documents/Inbox/file.zip")
let Contents = directoryContents
print("File is okay")
} catch let error as NSError {
print(error.localizedDescription)
}
编辑:我尝试了Alamofire示例但没有成功:(请注意我上传了一个用户通过“导入到”通过应用程序提交的文件,而不是xcode项目中的文件。)