python做中学(六)os.getcwd() 的用法

概述

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

语法

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

os.getcwd()

参数

返回值

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

实例

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

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

    用的时候,记得把路径换成你所需要的就行了。

参考:

https://www.runoob.com/python/os-getcwd.html

上一篇:【python】os.getcwd和getcwdu


下一篇:os.getcwd()函数的用法