mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
15 lines
267 B
TypeScript
15 lines
267 B
TypeScript
import * as fs from 'fs';
|
|
|
|
declare const process: { argv: string[] };
|
|
|
|
|
|
const dir = process.argv[2];
|
|
|
|
if (fs.existsSync(dir)) {
|
|
console.log('deleting folder:' + dir);
|
|
fs.rmSync(dir, {recursive: true});
|
|
}
|
|
console.log('creating folder:' + dir);
|
|
fs.mkdirSync(dir);
|
|
|