func resignRoutes() {
// 文件上传
routes.add(method: .post, uri: "/upload") { (req, resp) in
// 通过操作fileUploads数组来掌握文件上传的情况
// 如果这个POST请求不是分段multi-part类型,则该数组内容为空
if let uploads = req.postFileUploads , uploads.count > 0 {
// 创建文件保存路径
let fileDir = Dir(Dir.workingDir.path + "files")
do {
try fileDir.create()
} catch {
resp.appendBody(string: "create failed")
print(error)
}
// 创建一个字典数组用于检查已经上载的内容
var ary = [[String:Any]]()
for upload in uploads {
ary.append([
"fieldName": upload.fieldName, //字段名
"contentType": upload.contentType, //文件内容类型
"fileName": upload.fileName, //文件名
"fileSize": upload.fileSize, //文件尺寸
"tmpFileName": upload.tmpFileName //上载后的临时文件名
])
// 获取上传的临时文件
let thisFile = File(upload.tmpFileName)
do {
let _ = try thisFile.moveTo(path: fileDir.path + upload.fileName, overWrite: true)
} catch {
resp.appendBody(string: "remove failed")
print(error)
}
}
resp.appendBody(string: "upload success")
} else {
resp.appendBody(string: "upload fail")
}
resp.completed()
}
routes.add(method: .get, uri: "/download/**") { (req, resp) in
req.path = req.urlVariables[routeTrailingWildcardKey]!
let handler = StaticFileHandler(documentRoot: Dir.workingDir.path + "files")
handler.handleRequest(request: req, response: resp)
}
server.addRoutes(routes)
}
Perfect 文件上传下载
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 问题描述 在跟公司后台配合的上传zip压缩文件,上传成功,但是用mac登录内管平台登录,下载zip文件,zip解压...
- 1.写在前面的话 首先说明,我还没太搞懂retrofit,目前,这篇博客只能给出这几个内容。 文件上传 文件下载 ...
- 早上8:00在雨中同学们乘上大巴驶向海德堡。这里温度本就不高,下雨时更低,只有18℃,看着一些穿中裤的娃娃...