FileSystemManager.getSavedFileList

解释:获取该小程序下已保存的本地用户文件列表。

方法参数:Object object

object参数说明

参数名类型必填默认值说明
successFunction-接口调用成功的回调函数
failFunction-接口调用失败的回调函数
completeFunction-接口调用结束的回调函数(调用成功、失败都会执行)

success 返回参数说明

参数类型说明
fileListArray文件数组

代码示例

  • 在 js 文件中
  1. Page({
  2. onLoad() {
  3. const fs = swan.getFileSystemManager();
  4. this.fs = fs;
  5. },
  6. getSavedFileList() {
  7. this.fs.getSavedFileList({
  8. success: res => {
  9. console.log('getSavedFileList success', res);
  10. },
  11. fail: err => {
  12. console.log('getSavedFileList fail', err)
  13. }
  14. });
  15. }
  16. });