mirror of
https://github.com/mandatoryprogrammer/CursedChrome
synced 2026-06-08 15:39:30 +00:00
43 lines
1018 B
JavaScript
43 lines
1018 B
JavaScript
'use strict'
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
function deleteFolderContentsRecursive(dirPath) {
|
|
if (!dirPath.trim() || dirPath === '/') {
|
|
throw new Error('can_not_delete_this_dir');
|
|
}
|
|
|
|
if (fs.existsSync(dirPath)) {
|
|
fs.readdirSync(dirPath).forEach((file, index) => {
|
|
const curPath = path.join(dirPath, file);
|
|
if (fs.lstatSync(curPath).isDirectory()) {
|
|
deleteFolderContentsRecursive(curPath);
|
|
} else { // delete all files
|
|
fs.unlinkSync(curPath);
|
|
}
|
|
});
|
|
// keep the folder
|
|
// fs.rmdirSync(dirPath);
|
|
}
|
|
}
|
|
|
|
module.exports.getUserHome = function () {
|
|
return process.env.HOME || process.env.USERPROFILE;
|
|
};
|
|
|
|
module.exports.getDefaultRootDirName = function () {
|
|
return '.node_easy_certs';
|
|
};
|
|
|
|
/*
|
|
* identify whether the
|
|
*/
|
|
module.exports.isIpDomain = function (domain = '') {
|
|
const ipReg = /^\d+?\.\d+?\.\d+?\.\d+?$/;
|
|
|
|
return ipReg.test(domain);
|
|
};
|
|
|
|
module.exports.deleteFolderContentsRecursive = deleteFolderContentsRecursive;
|