Python os.chdir() 方法

概述

os.chdir() 方法用於改變當前工做目錄到指定的路徑。python

語法

chdir()方法語法格式以下:blog

os.chdir(path)

參數

  • path -- 要切換到的新路徑。get

返回值

若是容許訪問返回 True , 不然返回False。class

實例

如下實例演示了 chdir() 方法的使用:test

#!/usr/bin/python
# -*- coding: UTF-8 -*-

import os, sys

path = "test/"

# 查看當前工做目錄
retval = os.getcwd()
print "當前工做目錄爲 %s" % retval

# 修改當前工做目錄
os.chdir( path )

# 查看修改後的工做目錄
retval = os.getcwd()

print "目錄修改爲功 %s" % retval

執行以上程序輸出結果爲:import

相關文章
相關標籤/搜索