Python os.chdir() 方法
python os.chdir() 方法
os.chdir() 方法用于改變當(dāng)前工作目錄到指定的路徑。
語法
chdir()方法語法格式如下:
os.chdir(path)
參數(shù)
- path -- 要切換到的新路徑。
返回值
如果允許訪問返回 true , 否則返回false。
實(shí)例
以下實(shí)例演示了 chdir() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys path = "/tmp" # 查看當(dāng)前工作目錄 retval = os.getcwd() print "當(dāng)前工作目錄為 %s" % retval # 修改當(dāng)前工作目錄 os.chdir( path ) # 查看修改后的工作目錄 retval = os.getcwd() print "目錄修改成功 %s" % retval
執(zhí)行以上程序輸出結(jié)果為:
當(dāng)前工作目錄為 /www 目錄修改成功 /tmp
相關(guān)文章
- Python 中文編碼
- Python 基礎(chǔ)語法
- Python 循環(huán)語句
- Python pass 語句
- Python Number 數(shù)字
- Python File 方法
- Python 面向?qū)ο?/a>
- Python 正則表達(dá)式
- Python IDE
- Python 環(huán)境
- Python 列表
- Python 堆
- Python 圖算法
- Python3 注釋
- Python3 運(yùn)算符
- Python3 模塊
- Python3 輸入和輸出
- Python3 面向?qū)ο?/a>
- Python3 正則表達(dá)式
- Python3 網(wǎng)絡(luò)編程