Python os.getcwdu() 方法



Python 方法os.getcwdu()返回一个unicode对象,表示当前工作目录。

从Python 3.0版本开始,os.getcwdu()方法已弃用。可以使用os.getcwd()方法代替。

语法

Python os.getcwdu() 方法的语法如下:

os.getcwdu()

参数

Python os.getcwdu() 方法不接受任何参数。

返回值

Python os.getcwdu() 方法返回一个unicode对象,表示当前工作目录。

示例

以下示例显示了 getcwdu() 方法的用法。

#!/usr/bin/python

import os, sys

# First go to the "/var/www/html" directory
os.chdir("/var/www/html" )

# Print current working directory
print ("Current working dir : %s" % os.getcwdu())

# Now open a directory "/tmp"
fd = os.open( "/tmp", os.O_RDONLY )

# Use os.fchdir() method to change the dir
os.fchdir(fd)

# Print current working directory
print ("Current working dir : %s" % os.getcwdu())

# Close opened directory.
os.close( fd )

运行上述程序后,将产生以下结果:

Current working dir : /var/www/html
Current working dir : /tmp
python_files_io.htm
广告