Skip to content

Gets all files asynchronously given a folder path, with progress updates and filetype filter.

Notifications You must be signed in to change notification settings

damien-otis/get-files-recursive-async

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

get-files-recursive-async

Usage:

var getFilesRecursiveAsync = require('get-files-recursive-async');

var folder = "~/";

var filetypes = ["js","css"];

getFilesRecursiveAsync(folder,callback,filetypes,progress);

function callback(err,data){ console.log(err,data) }

function progress(data){ console.log("progress = ",data) }

alt tag

About

Gets all files asynchronously given a folder path, with progress updates and filetype filter.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published