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