node-filewalker icon indicating copy to clipboard operation
node-filewalker copied to clipboard

Fast and rock-solid asynchronous traversing of directories and files for node.js

Results 12 node-filewalker issues
Sort by recently updated
recently updated
newest added

When attaching a handler to stream event, recursively traversing a larger amount of files in a folder using node-filewalker, an error message occurs (usually at the same point (12114 files)):...

On Linux: ``` mkdir testdir touch testdir/a\\b ``` ``` var filewalker = require('filewalker'); filewalker("testdir") .on("file", function(p, s) { console.log(p); }) .walk(); ``` output is `a/b` instead of the expected `a\b`.