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
It also makes the node process consume a lot of CPU indefinitely. For reference, the built-in node function 'fs.mkdir' calls the callback with an error if it is called with a path that has invalid characters. The following is an example of the error reported by node's fs.mkdir function:
It appears that the problem occurs because calling mkdir throws the same error for a path with invalid characters as it does for a path with a parent directory that does not exist.
The text was updated successfully, but these errors were encountered:
The following code will never call the provided callback when executed on a windows machine:
It also makes the node process consume a lot of CPU indefinitely. For reference, the built-in node function 'fs.mkdir' calls the callback with an error if it is called with a path that has invalid characters. The following is an example of the error reported by node's fs.mkdir function:
It appears that the problem occurs because calling mkdir throws the same error for a path with invalid characters as it does for a path with a parent directory that does not exist.
The text was updated successfully, but these errors were encountered: