# FileSystemManager.rmdir

删除本地目录。

# 支持说明

应用能力 Android iOS PC 预览效果
小程序 3.12.0 3.11.0 3.10.0
扫码预览
用BoosHi扫码或PC端点击
网页应用 待开发 待开发 待开发 待补充

# 输入

继承标准对象输入,扩展属性:

名称 数据类型 必填 默认值 描述
dirPath string 本地目录路径
recursive boolean false 是否需要递归删除指定的目录

# 输出

继承标准对象输出,无扩展属性

# 代码示例

const fileSystemManager = bz.getFileSystemManager();

// 先创建一个目录
const examplePath = "bzfile://user/example-dir";

const res = fileSystemManager.mkdirSync(examplePath, true);
if (!res.errCode) {
  console.log("调用成功");
} else {
  console.log("调用失败", res.errMsg);
}

// 删除文件
fileSystemManager.rmdir({
  dirPath: examplePath,
  recursive: false,
  success(_res) {
    console.log("删除成功");
  },
  fail(res) {
    console.log("删除失败", res.errMsg);
  },
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
最后更新于 : 5/18/2023, 3:09:13 PM