精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python os.getcwdu() 方法

python os.getcwdu() 方法

python os 文件/目錄方法python os 文件/目錄方法

os.getcwdu() 方法用于返回一個當前工作目錄的unicode對象。

unix, windows 系統下可用。

 

語法

getcwdu()方法語法格式如下:

os.getcwdu()

 

參數

 

返回值

返回一個當前工作目錄的unicode對象。

 

實例

以下實例演示了 getcwdu() 方法的使用:

#!/usr/bin/python
# -*- coding: utf-8 -*-
import os, sys
# 切換到 "/var/www/html" 目錄
os.chdir("/var/www/html" )
# 打印當前目錄
print "當前工作目錄 : %s" % os.getcwdu()
# 打開 "/tmp"
fd = os.open( "/tmp", os.o_rdonly )
# 使用 os.fchdir() 方法修改目錄
os.fchdir(fd)
# 打印當前目錄
print "當前工作目錄 : %s" % os.getcwdu()
# 關閉文件
os.close( fd )

執行以上程序輸出結果為:

當前工作目錄 : /var/www/html
當前工作目錄 : /tmp

python os 文件/目錄方法python os 文件/目錄方法

下一節:python os.isatty() 方法

python 教程

相關文章