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
For the Python extension, we had been using fs-extra's mkdirp(), though we could have used node's mkdir() with the recursive: true option. T he new filesystem API provides createDirectory(), but that fails if the parent directory is missing. So we wrote a wrapper around that. However, it isn't an obvious solution, so it would be nice if the extension provided the equivalent of mkdirp().
(see #84175)
For the Python extension, we had been using fs-extra's
mkdirp()
, though we could have used node'smkdir()
with therecursive: true
option. T he new filesystem API providescreateDirectory()
, but that fails if the parent directory is missing. So we wrote a wrapper around that. However, it isn't an obvious solution, so it would be nice if the extension provided the equivalent ofmkdirp()
.@jrieken
The text was updated successfully, but these errors were encountered: