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

返回上一级

Python3 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.