feat: 增加文件权限修改功能

This commit is contained in:
zhengkunwang223
2022-08-26 17:35:14 +08:00
parent 1dc20914ac
commit 9db23ed649
4 changed files with 181 additions and 10 deletions

View File

@@ -25,19 +25,19 @@ export namespace File {
export interface FileTree {
id: string;
name: string;
isDir: Boolean;
isDir: boolean;
path: string;
children?: FileTree[];
}
export interface FileCreate {
path: string;
isDir: Boolean;
isDir: boolean;
mode: number;
}
export interface FileDelete {
path: string;
isDir: Boolean;
isDir: boolean;
}
}