missing mkdirRecursive #89
Labels
No labels
Bug
Enhancement
Feature Request
No milestone
No project
No assignees
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference: code/wrench-js#89
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Normally mkdir is fast operation which can be executed synchronously without blocking event loop for too long time, but this holds only for "local filesystems". When trying to use wrench on a disk exported through iSCSI the delays can get noticeably longer and one needs to switch to async methods. I have a simple fix implementing mkdirRecursive function (only this function because that's the only function I'm using in my app from wrench). I will submit a pull request shortly.