Sha256: b791430d9088ff9414c3994651340cf86fa73d7c229e2baa36123bedb7bdfcfd
Contents?: true
Size: 462 Bytes
Versions: 17
Compression:
Stored size: 462 Bytes
Contents
# List all the files in a Tree of Directories system = require 'system' if system.args.length != 2 console.log "Usage: phantomjs scandir.coffee DIRECTORY_TO_SCAN" phantom.exit 1 scanDirectory = (path) -> fs = require 'fs' if fs.exists(path) and fs.isFile(path) console.log path else if fs.isDirectory(path) fs.list(path).forEach (e) -> scanDirectory path + "/" + e if e != "." and e != ".." scanDirectory system.args[1] phantom.exit()
Version data entries
17 entries across 17 versions & 2 rubygems