Sha256: 3911b1337f29a7a28e37d6b1e38b8aa73fc36c83077e40f9e063d9f9ba0e8712
Contents?: true
Size: 618 Bytes
Versions: 17
Compression:
Stored size: 618 Bytes
Contents
// List all the files in a Tree of Directories var system = require('system'); if (system.args.length !== 2) { console.log("Usage: phantomjs scandir.js DIRECTORY_TO_SCAN"); phantom.exit(1); } var scanDirectory = function (path) { var fs = require('fs'); if (fs.exists(path) && fs.isFile(path)) { console.log(path); } else if (fs.isDirectory(path)) { fs.list(path).forEach(function (e) { if ( e !== "." && e !== ".." ) { //< Avoid loops scanDirectory(path + '/' + e); } }); } }; scanDirectory(system.args[1]); phantom.exit();
Version data entries
17 entries across 17 versions & 2 rubygems