You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the introduction of recursive functionality landing recently for mkdir in Node 10.12.0, we should mirror that for Filer.
The -p argument specifies creating the entire folder structure, which is a huge improvement for developers since it's been around forever.
Note: This is not a new function but simply an optional boolean flag with the default being false. We'll need to update it in a handful of places, starting with the following areas:
With the introduction of recursive functionality landing recently for
mkdir
in Node 10.12.0, we should mirror that for Filer.The
-p
argument specifies creating the entire folder structure, which is a huge improvement for developers since it's been around forever.Note: This is not a new function but simply an optional boolean flag with the default being
false
. We'll need to update it in a handful of places, starting with the following areas:fs.mkdir.spec.js
README
The text was updated successfully, but these errors were encountered: