Python os.getcwdu() 方法
os.getcwdu() 方法返回一个当前工作目录的 Unicode 对象
导入模块
import os
语法
os.getcwdu()
参数
无
返回值
返回一个当前工作目录的 Unicode 对象
范例
下面的代码演示了 os.getcwdu() 方法的简单使用
#!/usr/bin/python import os, sys # 切换到 "/home/xs/newdir" 目录 os.chdir("newdir" ) # 打印当前目录 print ( "当前工作目录 : %s" % os.getcwdu() ) # 打开 "/tmp" fd = os.open( "/tmp", os.O_RDONLY ) # 使用 os.fchdir() 方法修改目录 os.fchdir(fd) # 打印当前目录 print ( "当前工作目录 : %s" % os.getcwdu() ) # 关闭文件 os.close( fd )
运行以上 Python 代码,输出结果如下
当前工作目录 : /home/xs/newdir 当前工作目录 : /tmp