Python os.getcwdu() 方法
python os.getcwdu() 方法
os.getcwdu() 方法用于返回一個當(dāng)前工作目錄的unicode對象。
unix, windows 系統(tǒng)下可用。
語法
getcwdu()方法語法格式如下:
os.getcwdu()
參數(shù)
- 無
返回值
返回一個當(dāng)前工作目錄的unicode對象。
實(shí)例
以下實(shí)例演示了 getcwdu() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 切換到 "/var/www/html" 目錄 os.chdir("/var/www/html" ) # 打印當(dāng)前目錄 print "當(dāng)前工作目錄 : %s" % os.getcwdu() # 打開 "/tmp" fd = os.open( "/tmp", os.o_rdonly ) # 使用 os.fchdir() 方法修改目錄 os.fchdir(fd) # 打印當(dāng)前目錄 print "當(dāng)前工作目錄 : %s" % os.getcwdu() # 關(guān)閉文件 os.close( fd )
執(zhí)行以上程序輸出結(jié)果為:
當(dāng)前工作目錄 : /var/www/html 當(dāng)前工作目錄 : /tmp
相關(guān)文章
- Python 條件語句
- Python pass 語句
- Python Number 數(shù)字
- Python 模塊
- Python 文件I/O
- Python 操作 MySQL 數(shù)據(jù)庫
- Python SMTP發(fā)送郵件
- Python GUI編程 Tkinter
- Python JSON
- Python 環(huán)境
- Python Deque
- Python 回溯
- Python 圖算法
- Python 算法類
- Python3 解釋器
- Python3 注釋
- Python3 面向?qū)ο?/a>
- Python3 SMTP發(fā)送郵件
- Python3 內(nèi)置函數(shù)
- Python MongoDB 數(shù)據(jù)庫連接 - PyMongo 驅(qū)動