os.getcwd()

Posted 立业的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了os.getcwd()相关的知识,希望对你有一定的参考价值。

概述
  用于返回当前工作目录。

语法
  os.getcwd()

参数
  无

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

使用示例

import os, sys

os.chdir("/var/www/html" ) # 切换到 "/var/www/html" 目录
print (os.getcwd()) # 输出:/var/www/html

fd = os.open( "/tmp", os.O_RDONLY ) # 打开 "/tmp"
os.fchdir(fd) # 使用 os.fchdir() 方法修改目录
print (os.getcwd()) # 输出:/tmp

os.close( fd ) # 关闭文件

以上是关于os.getcwd()的主要内容,如果未能解决你的问题,请参考以下文章

工作目录与os.getcwd()

os.getcwd()

os.system("pwd") 和 os.getcwd() 的区别

在 aws Elastic BeanStalk 服务器上使用 os.getcwd() 读取文件的问题

python慎用os.getcwd() ,除非你知道文件路径与当前工作路径的区别

3.6 os模块