云端文件的管理,只看到有这几个API,没找到创建目录的API:
比如我想放到 test332目录 目录自动创建的
wx.cloud.uploadFile({ cloudPath: 'test332/example.png', filePath: '', // 小程序临时文件路径 success: res => { // get resource ID console.log(res.fileID) }, fail: err => { // handle error } })
wx.cloud.uploadFile({
cloudPath: 'test332/example.png',
filePath: '', // 小程序临时文件路径
success: res => {
// get resource ID
console.log(res.fileID)
}, fail: err => {
// handle error
} })
目录不能事先创建好,需要用程序创建,但找不到相应创建目录的API。