fsep
Version:
Fsep is a library that promisifies the native node FS operation and brings extras into the mix.
14 lines (11 loc) • 373 B
JavaScript
const Fsep = require('../index');
const Path = require('path');
const source = Path.join(__dirname, 'rw/blue/white/t.txt');
const target = Path.join(__dirname, 'rw/blue/sym/t.txt');
Promise.resolve().then(function () {
return Fsep.ensureSymlink(source, target);
}).then(function () {
console.log('symlink created');
}).catch(function (error) {
console.log(error);
});