Python 3 – os.getcwd() 方法

Python 3 – os.getcwd() 方法

描述

getcwd() 方法返回当前进程的工作目录。

语法

getcwd() 方法的语法如下:

os.ggetcwd(path)

参数

NA

返回值

此方法返回当前进程的工作目录。

示例

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

#!/usr/bin/python3
import os, sys

# 首先切换到 "/var/www/html" 目录
os.chdir("/var/www/html" )

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

# 现在打开一个目录 "/tmp"
fd = os.open( "/tmp", os.O_RDONLY )

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

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

# 关闭打开的目录。
os.close( fd )

结果

当我们运行以上程序时,它将产生以下结果−

Current working dir : /var/www/html
Current working dir : /tmp

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程