一个基于正则表达式的文件/文件夹路径查找工具
Project description
描述
search_files 是一个基于正则表达式的文件/文件夹路径查找工具,能够查找指定目录下的所有子孙路径,通过正则表达式匹配路径,并返回所有符合条件的文件/文件夹路径。
使用示例
import re
from arts import search_files # 导入用来查找路径的函数
# 查找所有.py文件
results = search_files(root_dir=f"{__file__}/..", pattern=r'\.py$', flags=0)
for x in results:
print(x)
# 查找所有文件名包含'README'的文件, 忽略大小写
results = search_files(root_dir=f"{__file__}/..", pattern=r'README', flags=re.I)
for x in results:
print(x)
参数解释
search_files
- 用来查找路径的函数。
root_dir
- 类型:
str或pathlib.Path - 作用:指定查找的根目录,函数将查找该目录下的所有子孙路径。
pattern
- 类型:
str - 作用:用于匹配路径的正则表达式模式。
- 说明:
- 统一使用
/作为路径分隔符,跨平台兼容。 - 正则表达式语法遵循 Python 标准
re模块规范。
- 统一使用
flags
- 类型:
int - 作用:正则表达式匹配标志,用于修改匹配行为。
- 说明:
- 默认为
0,表示无特殊标志 - 需使用
re模块提供的标志,如 re.S、re.I、re.M - 多标志可通过
|组合
- 默认为
版权声明
Copyright (c) 2026 许灿标
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
arts-2026.4.24.tar.gz
(18.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
arts-2026.4.24-py3-none-any.whl
(17.8 kB
view details)
File details
Details for the file arts-2026.4.24.tar.gz.
File metadata
- Download URL: arts-2026.4.24.tar.gz
- Upload date:
- Size: 18.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.33.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00e1f1bf382012b929da7971d5fb379aa3370ec7adf2eb0fa83daff288ecff14
|
|
| MD5 |
69b466f0733abb6079c82fc5b31c2414
|
|
| BLAKE2b-256 |
3d023e1ff640671433c16d59d09379b296bca813fd7fa5c01f68577dda924920
|
File details
Details for the file arts-2026.4.24-py3-none-any.whl.
File metadata
- Download URL: arts-2026.4.24-py3-none-any.whl
- Upload date:
- Size: 17.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.33.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
071b2bbe849268b34d8582522e1441fc653ca3d3779a8112e3f7ce5564888bd5
|
|
| MD5 |
99a07421122a04e2d08b55bdcc70d5eb
|
|
| BLAKE2b-256 |
c83cf820931e28b49d491764f2598f85dcaf112684d476dcb7548fbdd9493701
|