-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
std::io::fs::mkdir_recursive
overhaul
#6109
Comments
@msullivan has some thoughts on this, pinging him to resolve it. |
Triage visit; still relevant: same name, still recursive, and even has the following comment:
|
I've renamed and reworded the issue. |
Triage. Still recursive, permission comment still there, but moved to |
lbonn
added a commit
to lbonn/rust
that referenced
this issue
Mar 10, 2014
bors
added a commit
that referenced
this issue
Mar 13, 2014
As mentioned in #6109, ```mkdir_recursive``` doesn't really need to use recursive calls, so here is an iterative version. The other points of the proposed overhaul (renaming and existing permissions) still need to be resolved. I also bundled an iterative ```rmdir_recursive```, for the same reason. Please do not hesitate to provide feedback on style as this is my first code change in rust.
Probably fixed by 4c2ce3b |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
std::io::fs::mkdir_recursive
calls itself recursively. For deep paths this could (in theory) be a problem.An interative version could avoid this.
make_dirs
(analogous tomake_dir
)The text was updated successfully, but these errors were encountered: