Python3 os.getcwdu() 方法

概述

os.getcwdu() 方法用于返回一个当前工作目录的Unicode对象。

Unix, Windows 系统下可用。

语法

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

  1. os.getcwdu()

参数

返回值

返回一个当前工作目录的Unicode对象。

实例

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

  1. #!/usr/bin/python3
  2.  
  3. import os, sys
  4.  
  5. # 切换到 "/var/www/html" 目录
  6. os.chdir("/var/www/html" )
  7.  
  8. # 打印当前目录
  9. print ("当前工作目录 : %s" % os.getcwdu())
  10.  
  11. # 打开 "/tmp"
  12. fd = os.open( "/tmp", os.O_RDONLY )
  13.  
  14. # 使用 os.fchdir() 方法修改目录
  15. os.fchdir(fd)
  16.  
  17. # 打印当前目录
  18. print ("当前工作目录 : %s" % os.getcwdu())
  19.  
  20. # 关闭文件
  21. os.close( fd )

执行以上程序输出结果为:

  1. 当前工作目录 : /var/www/html
  2. 当前工作目录 : /tmp