Skip to content

Instantly share code, notes, and snippets.

@sebastienblanc
Created April 2, 2013 20:27
Show Gist options
  • Save sebastienblanc/5295881 to your computer and use it in GitHub Desktop.
Save sebastienblanc/5295881 to your computer and use it in GitHub Desktop.
this.readdir = function(path, callback) {
vertx.fileSystem.readDir(path, function(result) {
callback(undefined,result);
} );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment