wx.saveFile(OBJECT)
將檔案儲存到本機。
OBJECT參數說明:##[tr]參數類型必填說明[/tr]
String | 是 | 需要儲存的檔案的暫存路徑 | |
Function | 否 | 傳回檔案的儲存路徑,res = {savedFilePath: '檔案的儲存路徑'} | |
#Function | #否 | 介面呼叫失敗的回呼函數 | |
Function | 否 | 介面呼叫結束的回呼函數(呼叫成功、失敗都會執行) |
#範例程式碼:
wx.startRecord({ success: function(res) { var tempFilePath = res.tempFilePath wx.saveFile({ tempFilePath: tempFilePath, success: function(res) { var savedFilePath = res.savedFilePath } }) } }) wx.getSavedFileList(OBJECT)
取得本機已儲存的檔案清單
OBJECT參數說明:[tr]參數類型必填說明[/tr]
Function | #否 | 介面呼叫成功的回呼函數,回傳結果請見success回傳參數說明 | |
Function | 否 | #介面呼叫失敗的回呼函數 | |
Function | 否 | 介面呼叫結束的回呼函數(呼叫成功、失敗都會執行) |
success回傳參數說明:[tr]參數型別說明[/tr]
#String | 介面呼叫結果 | |
Object Array | 檔案清單 |
fileList中的項目說明:[tr]鍵類型說明[/tr]
String | 檔案的本機路徑 | |
Number | 檔案的儲存時的時間戳,從1970/01/01 08:00 :00 到目前時間的秒數 | |
Number | 檔案大小,單位B |
範例程式碼:
wx.getSavedFileList({ success: function(res) { console.log(res.fileList) } }) wx.getSavedFileInfo(OBJECT)
#複製程式碼
取得本機檔案的檔案資訊
OBJECT參數說明:[tr]參數類型必填說明[/tr]
String | 是 | 檔案路徑 | |
Function | 否 | 介面呼叫成功的回呼函數,傳回結果見success回傳參數說明 | |
Function | ##否##介面呼叫失敗的回呼函數 | complete | |
否 | 介面呼叫結束的回呼函數(呼叫成功、失敗都會執行) |
介面呼叫結果 | #size | |
檔案大小,單位B | createTime | |
#檔案的儲存是的時間戳,從1970/01/01 08:00:00 到目前時間的秒數 |
wx.getSavedFileInfo({ filePath: 'wxfile://somefile', //仅做示例用,非真正的文件路径 success: function(res) { console.log(res.size) console.log(res.createTime) } }) wx.removeSavedFile(OBJECT)
OBJECT參數說明:[tr]參數類型必填說明[/tr]
是 | 需要刪除的檔案路徑 | success | ||||||||||||||||
介面呼叫成功的回呼函數 | fail | Function | ||||||||||||||||
介面呼叫失敗的回呼函數 | #complete | Function | ||||||||||||||||
#介面呼叫結束的回呼函數(呼叫成功、失敗都會執行) |
filePath | String | 是 | 文件路径,可通过 downFile 获得 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例代码
wx.downloadFile({ url: 'http://example.com/somefile.pdf', success: function (res) { var filePath = res.tempFilePath wx.openDocument({ filePath: filePath, success: function (res) { console.log('打开文档成功') } }) } })
更多微信小程序:文件管理 API说明相关文章请关注PHP中文网!