在Python中,可以使用os
模塊來處理文件夾里的文件。以下是一些常見的方法:
import os
folder_path = '/path/to/folder'
file_list = os.listdir(folder_path)
import os
folder_path = '/path/to/folder'
for file_name in os.listdir(folder_path):
file_path = os.path.join(folder_path, file_name)
# 進行相應的處理
import os
file_path = '/path/to/file'
if os.path.exists(file_path):
# 文件存在
else:
# 文件不存在
import os
folder_path = '/path/to/folder'
os.makedirs(folder_path, exist_ok=True)
import shutil
source_file = '/path/to/source_file'
destination_folder = '/path/to/destination_folder'
shutil.copy(source_file, destination_folder)
import os
file_path = '/path/to/file'
os.remove(file_path)
請根據具體需求選擇適當的方法來處理文件夾中的文件。