mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-21 01:09:17 +08:00
121 lines
2.3 KiB
Go
121 lines
2.3 KiB
Go
import { CommonModel, ReqPage } from '.';
|
|
export namespace File {
|
|
export interface File extends CommonModel {
|
|
path: string;
|
|
name: string;
|
|
user: string;
|
|
group: string;
|
|
content: string;
|
|
size: number;
|
|
isDir: boolean;
|
|
isSymlink: boolean;
|
|
linkPath: boolean;
|
|
type: string;
|
|
updateTime: string;
|
|
modTime: string;
|
|
mode: number;
|
|
mimeType: string;
|
|
dirSize: number;
|
|
items: File[];
|
|
extension: string;
|
|
itemTotal: number;
|
|
}
|
|
|
|
export interface ReqFile extends ReqPage {
|
|
path: string;
|
|
search?: string;
|
|
expand: boolean;
|
|
dir?: boolean;
|
|
showHidden?: boolean;
|
|
}
|
|
|
|
export interface FileTree {
|
|
id: string;
|
|
name: string;
|
|
isDir: boolean;
|
|
path: string;
|
|
children?: FileTree[];
|
|
}
|
|
|
|
export interface FileCreate {
|
|
path: string;
|
|
isDir: boolean;
|
|
mode: number;
|
|
isLink?: boolean;
|
|
isSymlink?: boolean;
|
|
linkPath?: boolean;
|
|
}
|
|
|
|
export interface FileDelete {
|
|
path: string;
|
|
isDir: boolean;
|
|
}
|
|
|
|
export interface FileBatchDelete {
|
|
isDir: boolean;
|
|
paths: Array<string>;
|
|
}
|
|
|
|
export interface FileCompress {
|
|
files: string[];
|
|
type: string;
|
|
dst: string;
|
|
name: string;
|
|
replace: boolean;
|
|
}
|
|
|
|
export interface FileDeCompress {
|
|
path: string;
|
|
dst: string;
|
|
type: string;
|
|
}
|
|
|
|
export interface FileEdit {
|
|
path: string;
|
|
content: string;
|
|
}
|
|
|
|
export interface FileRename {
|
|
oldName: string;
|
|
newName: string;
|
|
}
|
|
|
|
export interface FileWget {
|
|
path: string;
|
|
name: string;
|
|
url: string;
|
|
}
|
|
|
|
export interface FileWgetRes {
|
|
key: string;
|
|
}
|
|
|
|
export interface FileKeys {
|
|
keys: string[];
|
|
}
|
|
|
|
export interface FileMove {
|
|
oldPaths: string[];
|
|
newPath: string;
|
|
type: string;
|
|
}
|
|
|
|
export interface FileDownload {
|
|
paths: string[];
|
|
name: string;
|
|
url: string;
|
|
}
|
|
|
|
export interface DirSizeReq {
|
|
path: string;
|
|
}
|
|
|
|
export interface DirSizeRes {
|
|
size: number;
|
|
}
|
|
|
|
export interface FilePath {
|
|
path: string;
|
|
}
|
|
}
|