这篇教程Python os.getcwd() 方法写得很实用,希望能帮到您。 概述os.getcwd() 方法用于返回当前工作目录。 语法getcwd()方法语法格式如下: os.getcwd() 参数返回值返回当前进程的工作目录。 实例以下实例演示了 getcwd() 方法的使用: #!/usr/bin/python# -*- coding: UTF-8 -*-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 Python os.ftruncate() 方法 Python os.getcwdu() 方法 |