Python3教程
+ -

Python3 os.getcwd() 方法

2019-09-09 2 0

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

语法

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

os.getcwd()

参数

返回值

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

实例

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

#!/usr/bin/python3
import os, sys
# 切换到 "/var/www/html" 目录
os.chdir("/var/www/html" )
# 打印当前目录
print ("当前工作目录 : %s" % os.getcwd())
# 打开 "/tmp"
fd = os.open( "/tmp", os.O_RDONLY )
# 使用 os.fchdir() 方法修改目录
os.fchdir(fd)
# 打印当前目录
print ("当前工作目录 : %s" % os.getcwd())
# 关闭文件
os.close( fd )

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

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

0 篇笔记 写笔记

Python3 os.getcwd() 方法
os.getcwd() 方法用于返回当前工作目录。语法getcwd() 方法语法格式如下:os.getcwd()参数无返回值返回当前进程的工作目录。实例以下实例演示了 getcwd() 方法的使用:#!/usr/bin/python3import os, sys# 切换到 "/var/ww......
取消
感谢您的支持,我会继续努力的!
扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

您的支持,是我们前进的动力!