欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【python学习笔记】Python os.getcwd() 方法:获取当前路径

程序员文章站 2022-05-29 16:41:50
...

一、定义

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

二、使用

import os

os.getcwd()

三、示例

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

上一篇: Mysql第四天

下一篇: MySQL第四天