Skip to main content

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

Project description

描述

search_files 是一个基于正则表达式的文件/文件夹路径查找工具,能够查找指定目录下的所有子孙路径,通过正则表达式匹配路径,并返回所有符合条件的文件/文件夹路径。

使用示例

import re

from arts import search_files  # 导入用来查找路径的函数
from arts import test_dir  # 导入用来测试的目录

# 查找所有.py文件
results = search_files(root_dir=test_dir, pattern=r'\.py$', flags=0)
for x in results:
    print(x)

# 查找所有文件名包含'README'的文件, 忽略大小写
results = search_files(root_dir=test_dir, pattern=r'README', flags=re.I)
for x in results:
    print(x)

参数解释

search_files

  • 用来查找路径的函数。

test_dir

  • 本项目自带的一个用来测试查找功能的文件夹,该文件夹内置了一些轻量的文件。

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.2.tar.gz (17.9 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.2-py3-none-any.whl (31.4 kB view details)

Uploaded Python 3

File details

Details for the file arts-2026.4.2.tar.gz.

File metadata

  • Download URL: arts-2026.4.2.tar.gz
  • Upload date:
  • Size: 17.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.32.5

File hashes

Hashes for arts-2026.4.2.tar.gz
Algorithm Hash digest
SHA256 664be98ac0aea0d63b4c1b736b0fdb12bb44e9e862998ca464ddbc20adcf8749
MD5 33caab06b330bf5ffe45de7d95d5392c
BLAKE2b-256 7f39b6920b43102dafebeaf47333d11af369380fd687196d4d8a10d7d06eef3a

See more details on using hashes here.

File details

Details for the file arts-2026.4.2-py3-none-any.whl.

File metadata

  • Download URL: arts-2026.4.2-py3-none-any.whl
  • Upload date:
  • Size: 31.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.32.5

File hashes

Hashes for arts-2026.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0a0c1e18c90eea69f2bfd9121af7ac0c914393dcd8b1e1f9243529524d676f21
MD5 15837638c3153641480f06e4c129303e
BLAKE2b-256 982daf0d00c0134d7a824db1f4bca77fc2f35527cf41b019aa84bdbcb18afb98

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