Python 3 – os.getcwdu() 方法
描述
方法 getcwdu() 返回代表当前工作目录的 Unicode 对象。
语法
getcwdu() 方法的语法如下所示 − getcwdu()
参数
无
返回值
该方法返回代表当前工作目录的 Unicode 对象。
示例
以下示例显示了如何使用 getcwdu() 方法。
#!/usr/bin/python3
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