UNPKG

@eightshone/sshman

Version:
33 lines 1.49 kB
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()); }); }; import { promises as fs } from "fs"; import { dirname } from "path"; function createFileIfNotExists(filePath_1) { return __awaiter(this, arguments, void 0, function* (filePath, content = "") { try { // Get the directory path const dir = dirname(filePath); // Ensure the directory exists yield fs.mkdir(dir, { recursive: true }); // Check if the file exists, and create it if it doesn't try { yield fs.access(filePath); } catch (_a) { yield fs.writeFile(filePath, content); } } catch (error) { console.error("Error:", error); } }); } export default createFileIfNotExists; //# sourceMappingURL=createFileIfNotExist.js.map