Python是一個工具箱,并且提供了大量有用的模塊來完成各種任務。其中一個非常重要的模塊是os模塊,它提供了一個跨平臺的接口來處理文件系統。以下是一些關于Python os模塊的重要信息。
# 導入os模塊 import os # 獲取當前目錄 current_directory = os.getcwd() print("當前目錄: ", current_directory) # 創建目錄 new_directory = "test_directory" if not os.path.exists(new_directory): os.mkdir(new_directory) # 刪除目錄 if os.path.exists(new_directory): os.rmdir(new_directory)
os模塊提供了許多方法來操作目錄和文件。在上面的示例中,os.getcwd()方法返回當前目錄的路徑,os.mkdir()函數用于創建一個新目錄,如果該目錄不存在的情況下。os.rmdir()函數用于刪除一個目錄(如果目錄為空)。
除了創建和刪除目錄外,os模塊還提供了其他有用的功能。os.rename()函數用于重命名文件或目錄,os.remove()函數用于刪除文件,os.listdir()函數用于列出指定目錄中的所有文件。
# 重命名文件 if os.path.exists("old_file.txt"): os.rename("old_file.txt", "new_file.txt") # 刪除文件 if os.path.exists("file_to_delete.txt"): os.remove("file_to_delete.txt") # 列出指定目錄中的文件 directory = os.getcwd() files = os.listdir(directory) print("目錄中的文件: ", files)
Python的os模塊還有很多其他有用的方法和功能。它是一個功能強大的模塊,可以幫助程序員有效地管理文件系統。掌握它可以讓程序開發更加簡單快捷。
下一篇oracle 定義序列