netget
Version:
Rette Adepto/ Recibido Directamente.
42 lines (36 loc) • 1.58 kB
JavaScript
//netget/src/modules/utils/GETDirs.js
import path from 'path';
import { ensureDirectoryExists } from './pathUtils.js';
const BASE_DIR = path.join('/opt/','.get');
const DIRECTORIES = {
getPath: BASE_DIR,
static: path.join(BASE_DIR, 'static'),
devPath: path.join(BASE_DIR, 'dev'),
devStatic: path.join(BASE_DIR, 'dev', 'static'),
gatewayPath: path.join(BASE_DIR, 'Gateways'),
// Routes directory needs to be created inside app directory
routePath: path.join(BASE_DIR, 'Routes'),
};
/* Safety and Non-Destructive Behavior
No Deletion or Overwriting: The script does not contain any commands to delete or overwrite files or directories.
The fs.mkdirSync() function only creates directories; it does not modify or delete existing files or directories.
Preservation of Existing Content: If a directory already exists, fs.mkdirSync() with { recursive: true } does nothing to that directory or its contents.
It simply moves on without changing anything in the existing directory structure.*/
/**
* Initializes all necessary directories and checks their permissions.
*/
function initializeDirectories() {
Object.values(DIRECTORIES).forEach(dir => {
ensureDirectoryExists(dir);
// Optional: Check and correct permissions after creation
// checkPermissions(dir, 0o755); // Uncomment if needed
});
}
/**
* Get paths to important directories.
* @returns {object} Object containing paths to key directories.
*/
function getDirectoryPaths() {
return DIRECTORIES;
}
export { initializeDirectories, getDirectoryPaths };