From 6e1258124b5ea01b4ccc8874be75d9cca54761e1 Mon Sep 17 00:00:00 2001 From: Ryan Florence Date: Thu, 20 Oct 2011 22:14:57 -0600 Subject: [PATCH] Fixed mkdirs signature. --- file/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file/README.md b/file/README.md index ee93e4f..1b9ac72 100644 --- a/file/README.md +++ b/file/README.md @@ -18,7 +18,7 @@ Navigates a file tree, calling callback for each directory, passing in (null, di Like file.walk but synchronous. -### file.mkdirs(path, callback) +### file.mkdirs(path, mode, callback) Makes all the directories in a path. (analgous to mkdir -P) For example given a path like "test/this/path" in an empty directory, mkdirs would make the directories "test", "this" and "path".