python os模組命令集合

2021-09-14 07:40:35 字數 2331 閱讀 8788

os.getcwd:得到當前工作目錄,即當前python指令碼工作的目錄路徑。

os.mkdir(name):建立目錄

os.path.split(name):分割檔名與目錄(事實上,如果你完全使用目錄,它也會將最後乙個目錄作為檔名而分離,同時它不會判斷檔案或目錄是否存在)

os.path.existe():檢驗給出的路徑是否真的存在

os.path.exists(name):判斷是否存在檔案或目錄name

os.path.abspath(name):獲得絕對路徑

os.path.join(path,name):連線目錄與檔名或目錄

os.sep:取代作業系統特定的路徑分隔符

os.name:指示你正在使用的工作平台。比如對於windows,它是'nt',而對於linux/unix使用者,它是'posix'

os.getenv():讀取環境變數

os.putenv:設定環境變數

os.listdir():返回指定目錄下的所有檔案和目錄名

os.remove(file):刪除乙個檔案

os.stat(file):獲得檔案屬性

os.chmod(file):修改檔案許可權和時間戳

os.rmdir(name):刪除目錄

os.removedirs(r「c:\python」):刪除多個目錄

os.system():執行shell命令

os.exit():終止當前程序

os.linesep:給出當前平台的行終止符。例如,windows使用'\r\n',linux使用'\n'而mac使用'\r'

os.path.isfile()和os.path.isdir()分別檢驗給出的路徑是乙個目錄還是檔案

os.listdir(dirname):列出dirname下的目錄和檔案

os.curdir:返回當前目錄('.'

os.chdir(dirname):改變工作目錄到dirname

os.path.isdir(name):判斷name是不是目錄,不是目錄就返回false

os.path.isfile(name):判斷name這個檔案是否存在,不存在返回false

os.path.getsize(name):或得檔案大小,如果name是目錄返回0l

os.path.isabs():判斷是否為絕對路徑

os.path.normpath(path):規範path字串形式

os.path.splitext():分離檔名和副檔名

os.path.basename(path):返回檔名

os.path.dirname(path):返回檔案路徑

os.rename(dir,new_dir):重新命名檔案或目錄

mysql命令集合

測試環境 mysql 5.0.45 注 可以在mysql中通過mysql select version 來檢視資料庫版本 整理 leo 一 連線mysql。格式 mysql h主機位址 u使用者名稱 p使用者密碼 1 連線到本機上的mysql。首先開啟dos視窗,然後進入目錄mysql bin,再鍵...

Android ADB linux命令集合

a.用adb區域網功能連線裝置 1,先用usb連線執行adb命令,將連線方式改為tcpip adb tcpip port為埠號 2,拔掉usb線,執行adb命令連線裝置 adb connect 裝置ip port 剛才設定的埠號 3,正常執行adb命令 adb的工作方式比較特殊採用監聽socket ...

yum命令集合

一 列舉包檔案 列出資源庫中所有可以安裝或更新的rpm包 yum list 列出資源庫中特定的可以安裝或更新以及已經安裝的rpm包 yum list perl 列出名為perl 的包 yum list perl 列出perl 開頭的包 列出資源庫中所有可以更新的rpm包 yum list updat...