export interface File { path: string; write(value: any): void; read(): string | any; isReadable(): boolean; isReadWritable(): boolean; create(): boolean; remove(): void; exists(): boolean; fullname(): string; extname(): string; name(): string; }