单项选择题
对以下代码片段作用的最准确描述是( )
wx.getSavedFileList({
success (res) {
if (res.fileList.length > 0){
wx.removeSavedFile({
filePath: res.fileList[0].filePath,
complete (res) {
console.log(res)
}
})
}
}
})
A、 获取已保存的所有文件
B、 获取已保存的第一个文件
C、 删除已保存的所有文件
D、 删除已保存的第一个文件