file-manipulator
Version:
## Easy File operations library
55 lines (54 loc) • 2.37 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const fs_extra_1 = __importDefault(require("fs-extra"));
const path_1 = __importDefault(require("path"));
const utils_1 = __importDefault(require("../utils"));
class Deleter {
file(config) {
return __awaiter(this, void 0, void 0, function* () {
try {
//file names
const startFullName = utils_1.default.getNameByConfig(config);
//file pathes
const startFullPath = path_1.default.resolve(config.path, startFullName);
//operations
yield fs_extra_1.default.remove(startFullPath);
return true;
}
catch (e) {
console.log(this.constructor.name, `[${this.file.name}]`, config.name, e);
return false;
}
});
}
folder(config) {
return __awaiter(this, void 0, void 0, function* () {
try {
//file names
const startFullName = `${config.name}`;
//file pathes
const startFullPath = path_1.default.resolve(config.path, startFullName);
//operations
yield fs_extra_1.default.remove(startFullPath);
return true;
}
catch (e) {
console.log(this.constructor.name, `[${this.folder.name}]`, config.name, e);
return false;
}
});
}
}
exports.default = new Deleter();