aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/scandir.coffee
blob: 0ee4ffc21ba89808d3514a6004e7d54c9926d92e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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()