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
The standard library implements remove_dir_all in terms of multiple operations. We should provide an error message detailing exactly which of these failed.
FileTypeExt::is_symlink_dir is stable as of Rust 1.64.0. It would be a shame to impose a MSRV just for this, but maybe this could be implemented as an optional feature
The standard library implements
remove_dir_all
in terms of multiple operations. We should provide an error message detailing exactly which of these failed.This is straightforward on most platforms. The implementation can be replicated using existing APIs. Unfortunately the windows implementation uses the unstable
FileTypeExt::is_symlink_dir
We can work around this by using winapi directly, or waiting for the method to stabilize
The text was updated successfully, but these errors were encountered: