当前位置:   article > 正文

小程序读取本地指定目录下所有文件列表_小程序获取本地文件

小程序获取本地文件

小程序读取本地指定目录下所有文件列表

function getFilesList(dirPath) {
  const fs = wx.getFileSystemManager();`在这里插入代码片`
  let filesList = [];
  try {
    const files = fs.readdirSync(dirPath);
    files.forEach(file => {
      // 排除文件夹
      if (!fs.statSync(dirPath + '/' + file).isDirectory()) {
        filesList.push(file);
      }
    });
  } catch (e) {
    console.log('读取文件列表失败', e);
  }

  return filesList;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

可以使用以下代码将数据设置到data里的SwiperList中:

const dirPath = wx.env.USER_DATA_PATH + '/files'; // 指定目录路径
const filesList = getFilesList(dirPath); // 获取文件列表

this.setData({
  SwiperList: filesList
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

请注意,获取本地文件列表需要用户授权,应该在小程序中的onShow生命周期中请求授权代码如下:

wx.getSetting({
  success(res) {
    if (!res.authSetting['scope.writePhotosAlbum']) {
      wx.authorize({
        scope: 'scope.writePhotosAlbum',
        success() {
          console.log('授权成功');
        },
        fail() {
          console.log('授权失败');
        }
      })
    }
  }
})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

请将以上代码放入小程序的onShow函数中。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/188750
推荐阅读
相关标签
  

闽ICP备14008679号