API to lint filesystem.
npm i @putout/cli-filesystem
renameFile('/hello/world.txt', '/hello/hello.txt');
removeFile('/hello/world.txt');
copyFile('/hello/world.txt', '/hello/hello.txt');
createDirectory('/hello/world');
readFileContent('/hello/world');
// returns
'hello';
If parent directory not exists - creates it.
writeFileContent('/hello/world', 'hello');
readFileContent('/hello/world');
// returns
'hello';
MIT