在Python中,你可以使用os
模块来执行系统命令,并结合其他模块来实现更复杂的功能。以下是一些常见的示例:
- 使用
os
和subprocess
模块执行外部命令:
import os import subprocess # 使用os.system执行简单的命令 os.system("echo 'Hello, World!'") # 使用subprocess模块执行更复杂的命令并获取输出 result = subprocess.run(["ls", "-l"], capture_output=True, text=True) print(result.stdout)
- 使用
os
和glob
模块搜索文件:
import os import glob # 使用glob模块搜索特定模式的文件 files = glob.glob("*.txt") for file in files: print(file)
- 使用
os
和shutil
模块操作文件和目录:
import os import shutil # 创建一个新目录 os.makedirs("new_directory") # 复制一个文件到新目录 shutil.copy("source_file.txt", "new_directory/destination_file.txt") # 删除一个目录及其内容 shutil.rmtree("new_directory")
- 使用
os
和pathlib
模块处理文件路径:
import os from pathlib import Path # 获取当前工作目录 current_directory = os.getcwd() print(current_directory) # 使用pathlib创建一个Path对象 file_path = Path("new_directory") / "destination_file.txt" # 检查文件是否存在 if file_path.exists(): print("File exists") else: print("File does not exist")
这些示例展示了如何使用os
模块结合其他模块来执行系统命令和处理文件。你可以根据自己的需求调整这些示例以满足你的具体用途。