Python os.getcwd() 方法

返回上一级

os.getcwd() 方法返回当前工作目录

导入模块

import os

语法

os.getcwd()

参数

返回值

返回当前进程的工作目录

范例

下面的代码使用 os.getcwd() 输出当前的工作目录

#!/usr/bin/python

import os, sys

# 切换到 "/home/xs/newdir" 目录
os.chdir("/home/xs/newdir" )

# 打印当前目录
print ( "当前工作目录 : %s" % os.getcwd() )

# 打开 "/tmp"
fd = os.open( "/tmp", os.O_RDONLY )

# 使用 os.fchdir() 方法修改目录
os.fchdir(fd)

# 打印当前目录
print ( "当前工作目录 : %s" % os.getcwd() )

# 关闭文件
os.close( fd )

运行以上 Python 代码,输出结果如下

当前工作目录 : /home/xs/newdir
当前工作目录 : /tmp

返回上一级

Python3 基础教程

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

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

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