UNPKG

file-manipulator

Version:

## Easy File operations library

70 lines (69 loc) 3.3 kB
"use strict"; 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 Creator { 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 const isExist = yield utils_1.default.checkExist(startFullPath); const canBeWrited = !isExist || (isExist && (config === null || config === void 0 ? void 0 : config.replaceExisting)); if (canBeWrited) { yield fs_extra_1.default.writeFile(startFullPath, (config === null || config === void 0 ? void 0 : config.content) || '', { encoding: (config === null || config === void 0 ? void 0 : config.encoding) || 'utf8' }); return true; } else { return false; } } 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 const isExist = yield utils_1.default.checkExist(startFullPath); const canBeWrited = !isExist || (isExist && (config === null || config === void 0 ? void 0 : config.replaceExisting)); if (canBeWrited) { yield utils_1.default.remove(startFullPath); yield fs_extra_1.default.mkdir(startFullPath); return true; } else { return false; } } catch (e) { console.log(this.constructor.name, `[${this.folder.name}]`, config.name, e); return false; } }); } } exports.default = new Creator();