この記事では、Python を使用して、指定したディレクトリ内のファイルをスキャンしたり、指定したサフィックスとプレフィックスを照合したりする機能を紹介します。手順は次のとおりです。
指定したディレクトリ (サブディレクトリを含む) 内のファイルをスキャンしたい場合は、scan_files("/export/home/test/") を呼び出す必要があります
サブディレクトリを含む指定されたディレクトリ内の特定のサフィックスを持つファイル (jar パッケージなど) をスキャンする場合は、scan_files("/export/home/test/", postfix=".jar") を呼び出します。
サブディレクトリを含む指定されたディレクトリ内の特定のプレフィックス (test_xxx.py など) を持つファイルをスキャンする場合は、scan_files("/export/home/test/", postfix="test_") を呼び出します。
具体的な実装コードは次のとおりです:
#!/usr/bin/env python #coding=utf-8 import os def scan_files(directory,prefix=None,postfix=None): files_list=[] for root, sub_dirs, files in os.walk(directory): for special_file in files: if postfix: if special_file.endswith(postfix): files_list.append(os.path.join(root,special_file)) elif prefix: if special_file.startswith(prefix): files_list.append(os.path.join(root,special_file)) else: files_list.append(os.path.join(root,special_file)) return files_list