-
-
Notifications
You must be signed in to change notification settings - Fork 29.9k
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
Add the root_dir and dir_fd parameters in glob.glob() #82325
Comments
The pattern for the glob() function can be relative and absolute. If it is relative, paths are searched from the current directory. If you want to search them in other directory, you need either change the current directory (which affects other parts of your program) or pass a concatenation of the escaped root directory and a pattern: glob.glob(os.path.join(glob.escape(root_dir), pattern)) Most code (even in the stdlib and tools) forget to escape the root directory. It works only until it does not contain metacharacters ('*?['). When you need paths relative to the root directory, you need to "remove" the root_dir prefix from results (using os.path.relpath() at best). The proposed PR adds two new parameters in glob.glob() and glob.iglob(): root_dir and dir_fd. root_dir specifies the root directory for relative pattern. Its effect is the same as chdir before calling glob(). It is similar to the root_dir parameter of shutil.make_archive. For example, you can add py-files in the specified directory to the ZIP archive by: with zipfile.ZipFile(archive, 'w') as zf:
for filename in glob.glob('**/*.py', recursive=True, root_dir=root_dir):
zf.write(os.path.join(root_dir, filename), arcname=filename) Adding to archive and copying are simpler if you have paths relative to the specified directory. The dir_fd parameter is similar to root_dir, but it specifies the root directory as an open directory descriptor instead of a path (as in many os functions). It adds security (nobody can rename and replace the root directory in process) and performance (because of shorter paths). root_dir and dir_fd can be combined. root_dir is relative to dir_fd and the pattern is relative to root_dir. If root_dir is absolute, dir_fd is ignored. If the pattern is absolute, root_dir and dir_fd are ignored. |
After adding this feature to iglob I am going to add it to other functions which work recursively with a directory tree. The only question: should we add two parameters root_dir and dir_fd or combine them in a single rood_dir (which can be either path or file descriptor or a special object combining a file descriptor and a relative path)? Or maybe merge one variant, test it and change it before feature freeze if needed? |
I'm digging around in the sys.audit() feature. Did the sys.audit("glob.glob", ...) call disappear in commit 8a64cea, or is something clever going on that I missed? |
Thank you for catching this. It was an error introduced by merge. |
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: