mirror of
https://gitee.com/abc126655/finder-refferenct3
synced 2024-12-26 11:48:22 +00:00
65 lines
1.9 KiB
TypeScript
65 lines
1.9 KiB
TypeScript
|
const Fs = require('fs');
|
||
|
const Path = require('path');
|
||
|
|
||
|
/**
|
||
|
* 文件工具
|
||
|
*/
|
||
|
export default class FileUtil {
|
||
|
|
||
|
/**
|
||
|
* 复制文件/文件夹
|
||
|
* @param {Fs.PathLike} srcPath 源路径
|
||
|
* @param {Fs.PathLike} destPath 目标路径
|
||
|
*/
|
||
|
static copy(srcPath, destPath) {
|
||
|
if (!Fs.existsSync(srcPath)) return;
|
||
|
const stats = Fs.statSync(srcPath);
|
||
|
if (stats.isDirectory()) {
|
||
|
if (!Fs.existsSync(destPath)) Fs.mkdirSync(destPath);
|
||
|
const names = Fs.readdirSync(srcPath);
|
||
|
for (const name of names) {
|
||
|
this.copy(Path.join(srcPath, name), Path.join(destPath, name));
|
||
|
}
|
||
|
} else if (stats.isFile()) {
|
||
|
Fs.writeFileSync(destPath, Fs.readFileSync(srcPath));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 删除文件/文件夹
|
||
|
* @param {Fs.PathLike} path 路径
|
||
|
*/
|
||
|
static delete(path) {
|
||
|
if (!Fs.existsSync(path)) return;
|
||
|
const stats = Fs.statSync(path);
|
||
|
if (stats.isDirectory()) {
|
||
|
const names = Fs.readdirSync(path);
|
||
|
for (const name of names) {
|
||
|
this.delete(Path.join(path, name));
|
||
|
}
|
||
|
Fs.rmdirSync(path);
|
||
|
} else if (stats.isFile()) {
|
||
|
Fs.unlinkSync(path);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 遍历文件/文件夹并执行函数
|
||
|
* @param {Fs.PathLike} path 路径
|
||
|
* @param {(filePath: Fs.PathLike, stat: Fs.Stats) => void} handler 处理函数
|
||
|
*/
|
||
|
static async map(path:string, handler: (string,any)=>Promise<void>) {
|
||
|
if (!Fs.existsSync(path)) return
|
||
|
const stats = Fs.statSync(path);
|
||
|
if (stats.isDirectory()) {
|
||
|
const names = Fs.readdirSync(path);
|
||
|
for (const name of names) {
|
||
|
await this.map(Path.join(path, name), handler);
|
||
|
}
|
||
|
} else if (stats.isFile()) {
|
||
|
await handler(path, stats);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|