feat: 增加创建软链接文件功能

This commit is contained in:
zhengkunwang223
2022-08-31 16:00:51 +08:00
parent 245f5fb68a
commit 1b0660f4a3
9 changed files with 98 additions and 27 deletions

View File

@@ -9,6 +9,7 @@ export namespace File {
size: number;
isDir: boolean;
isSymlink: boolean;
linkPath: boolean;
type: string;
updateTime: string;
modTime: string;
@@ -35,6 +36,9 @@ export namespace File {
path: string;
isDir: boolean;
mode: number;
isLink?: boolean;
isSymlink?: boolean;
linkPath?: boolean;
}
export interface FileDelete {