Skip to content

Instantly share code, notes, and snippets.

@pvarenik
Created January 24, 2017 14:42
Show Gist options
  • Save pvarenik/26e5270a546407c7e8341c159a902903 to your computer and use it in GitHub Desktop.
Save pvarenik/26e5270a546407c7e8341c159a902903 to your computer and use it in GitHub Desktop.
FileHound.create()
.paths('./screens', './screens/actual', './screens/diff')
.ext('MD')
.not()
.depth(0)
.find()
.then(function (files) {
for (var i = 0; i < files.length; i++) {
fs.unlink(files[i]);
console.log('DELETE: ', files[i]);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment