flagpole
Version:
Simple and fast DOM integration and REST API testing framework.
21 lines (17 loc) • 476 B
text/typescript
import { Cli } from "./cli-helper";
const fs = require('fs');
export function path() {
if (fs.existsSync(Cli.rootPath)) {
// Query the entry
let stats = fs.lstatSync(Cli.rootPath);
// Is it a directory?
if (!stats.isDirectory()) {
Cli.log("The path you specified is not a directory.");
Cli.exit(1);
}
}
else {
Cli.log("The path you specified did not exist.");
Cli.exit(1);
}
}