feat: 增加创建文件夹功能

This commit is contained in:
zhengkunwang223
2022-08-25 17:54:52 +08:00
parent e0757f4d65
commit f48ae22a15
12 changed files with 246 additions and 23 deletions

View File

@@ -29,4 +29,10 @@ export namespace File {
path: string;
children?: FileTree[];
}
export interface FileCreate {
path: string;
isDir: Boolean;
mode: number;
}
}