小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我现在利用FileSystemManager.mkdir api去创建一个目录,需要在该目录下存放照片,请问,创建成功后,我如何手动去找到这个目录?
代码如下,获取的目录是wxfile://usr/home
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
在缓存里,你找不到
请学会如何「提问」(👈戳我)、【个体工商户】微信认证问题(👈戳我)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
wx.chooseImage({
count: 1,
sizeType: ['original'],
sourceType: ['camera'],
success: res => {
let filePaths = res.tempFilePaths[0];
that.data.image = filePaths;
let endWith = filePaths.split('.');
const fs = wx.getFileSystemManager();
fs.mkdir({
dirPath: `${wx.env.USER_DATA_PATH}/newDir`,
recursive: true,
console.log(res, 'res')
},
fail: err => {
console.log(err, 'err')
complete: result => {
if (result.errMsg == 'mkdir:ok' || result.errMsg == `mkdir:fail file already exists "${wx.env.USER_DATA_PATH}/newDir"`) {
for (let i = 0; i < 50; i++) {
that.data.num++;
fs.rename({
oldPath: filePaths,
newPath: `${wx.env.USER_DATA_PATH}/newDir/${that.data.num}.${endWith[endWith.length-1]}`,
success: res => {},
fail: err => {}
})
}
});
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
在缓存里,你找不到
请学会如何「提问」(👈戳我)、【个体工商户】微信认证问题(👈戳我)
请学会如何「提问」(👈戳我)、【个体工商户】微信认证问题(👈戳我)
wx.chooseImage({
count: 1,
sizeType: ['original'],
sourceType: ['camera'],
success: res => {
let filePaths = res.tempFilePaths[0];
that.data.image = filePaths;
let endWith = filePaths.split('.');
const fs = wx.getFileSystemManager();
fs.mkdir({
dirPath: `${wx.env.USER_DATA_PATH}/newDir`,
recursive: true,
success: res => {
console.log(res, 'res')
},
fail: err => {
console.log(err, 'err')
},
complete: result => {
if (result.errMsg == 'mkdir:ok' || result.errMsg == `mkdir:fail file already exists "${wx.env.USER_DATA_PATH}/newDir"`) {
for (let i = 0; i < 50; i++) {
that.data.num++;
fs.rename({
oldPath: filePaths,
newPath: `${wx.env.USER_DATA_PATH}/newDir/${that.data.num}.${endWith[endWith.length-1]}`,
success: res => {},
fail: err => {}
})
}
}
}
});
}
});
https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
请学会如何「提问」(👈戳我)、【个体工商户】微信认证问题(👈戳我)