在Python中,可以使用内置的os
和shutil
模块来执行Linux文件操作。以下是一些常见的文件操作示例:
- 创建文件:
import os file_path = "example.txt" # 检查文件是否存在 if not os.path.exists(file_path): # 创建一个新文件 with open(file_path, "w") as file: file.write("Hello, World!")
- 读取文件:
import os file_path = "example.txt" # 检查文件是否存在 if os.path.exists(file_path): # 读取文件内容 with open(file_path, "r") as file: content = file.read() print(content)
- 遍历目录:
import os directory_path = "/path/to/directory" # 遍历目录中的所有文件 for file_name in os.listdir(directory_path): file_path = os.path.join(directory_path, file_name) if os.path.isfile(file_path): print(file_path)
- 创建目录:
import os directory_path = "/path/to/directory" # 检查目录是否存在 if not os.path.exists(directory_path): # 创建一个新目录 os.makedirs(directory_path)
- 删除文件:
import os file_path = "example.txt" # 检查文件是否存在 if os.path.exists(file_path): # 删除文件 os.remove(file_path)
- 删除目录:
import os directory_path = "/path/to/directory" # 检查目录是否存在 if os.path.exists(directory_path): # 删除目录及其内容 shutil.rmtree(directory_path)
- 重命名文件或目录:
import os old_file_path = "old_example.txt" new_file_path = "new_example.txt" # 检查旧文件是否存在 if os.path.exists(old_file_path): # 重命名文件 os.rename(old_file_path, new_file_path)
- 复制文件:
import shutil src_file_path = "source_example.txt" dst_file_path = "destination_example.txt" # 检查源文件是否存在 if os.path.exists(src_file_path): # 复制文件 shutil.copy2(src_file_path, dst_file_path)
- 移动文件:
import shutil src_file_path = "source_example.txt" dst_file_path = "destination_example.txt" # 检查源文件是否存在 if os.path.exists(src_file_path): # 移动文件 shutil.move(src_file_path, dst_file_path)
这些示例展示了如何使用Python在Linux环境下执行基本的文件操作。你可以根据需要调整这些示例以满足你的需求。