tor-router/x.js

8 lines
175 B
JavaScript
Raw Normal View History

2017-03-22 16:44:08 +00:00
const shell = require('shelljs');
const fs = require('fs');
const DIR = '/tmp/x';
shell.find(DIR)
.filter((path) => fs.lstatSync(path).isFile())
.forEach((file) => {
});