import os
# 指定檔案路徑file_path = 'path/to/file.txt'# 建立空白檔案open(file_path, 'w').close()# 或者寫入內容到檔案中with open(file_path, 'w') as file:file.write('這是檔案的內容。')
# 指定要刪除的檔案路徑file_path = 'path/to/file.txt'# 使用os.remove()函數刪除檔案os.remove(file_path)
# 原始檔案名稱和路徑old_file_path = 'path/to/old_file.txt'# 新的檔案名稱和路徑new_file_path = 'path/to/new_file.txt'# 使用os.rename()函數進行更名os.rename(old_file_path, new_file_path)