-
Notifications
You must be signed in to change notification settings - Fork 12
Better FileSystem #7
Comments
On Windows, I've found |
I don't think that the existence of third party modules means the stdlib is lacking. If we take that approach we'll end up with the Python stdlib. That said, if there is fundamental functionality lacking then we should add it. Moving/copying directories seems pretty "fundamental" and also quite difficult and not something where we actually gain much from having multiple implementations. |
I think in general, the error (handling) system for fs and similar operations is very raw, and that probably the big pain point. Maybe the promisified-fs idea could help here? |
Yup, this bit us a bit too when libuv improved their error message streams and we broke a lot of people's more naive tests without realizing we were doing it. |
Existence of modules like
fs-plus
orfs-extra
seems to be an indicator that currentfs
module can be not enough. For example there are no methods for copying / moving files and folders.We can also use this topic for general fs additions / changes, I just started with initial ones.
The text was updated successfully, but these errors were encountered: