createfile
函數可以用來創建一個新的文件,并返回一個文件對象。
首先,我們需要導入os
模塊,以便使用createfile
函數。
定義createfile
函數:
import os
def createfile(filename):
try:
file = open(filename, 'w') # 打開文件,以寫入模式
file.close() # 關閉文件
print("文件創建成功")
except Exception as e:
print("文件創建失敗:", str(e))
使用createfile
函數:
filename = "example.txt"
createfile(filename)
這將在當前目錄下創建一個名為example.txt
的空文件。如果文件創建成功,將輸出"文件創建成功";如果文件創建失敗,將輸出"文件創建失敗"和錯誤信息。
注意:在使用createfile
函數之前,請確保你具有適當的文件寫入權限。