Skip to main content

一个基于正则表达式的文件/文件夹路径查找工具

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

  • 类型strpathlib.Path
  • 作用:指定查找的根目录,函数将查找该目录下的所有子孙路径。

pattern

  • 类型str
  • 作用:用于匹配路径的正则表达式模式。
  • 说明
    • 统一使用 / 作为路径分隔符,跨平台兼容。
    • 正则表达式语法遵循 Python 标准 re 模块规范。

flags

  • 类型int
  • 作用:正则表达式匹配标志,用于修改匹配行为。
  • 说明
    • 默认为 0,表示无特殊标志
    • 需使用 re 模块提供的标志,如 re.S、re.I、re.M
    • 多标志可通过 | 组合

版权声明

Copyright (c) 2026 许灿标

Project details


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)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

arts-2026.4.24-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

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

Hashes for arts-2026.4.24.tar.gz
Algorithm Hash digest
SHA256 00e1f1bf382012b929da7971d5fb379aa3370ec7adf2eb0fa83daff288ecff14
MD5 69b466f0733abb6079c82fc5b31c2414
BLAKE2b-256 3d023e1ff640671433c16d59d09379b296bca813fd7fa5c01f68577dda924920

See more details on using hashes here.

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

Hashes for arts-2026.4.24-py3-none-any.whl
Algorithm Hash digest
SHA256 071b2bbe849268b34d8582522e1441fc653ca3d3779a8112e3f7ce5564888bd5
MD5 99a07421122a04e2d08b55bdcc70d5eb
BLAKE2b-256 c83cf820931e28b49d491764f2598f85dcaf112684d476dcb7548fbdd9493701

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page