os.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
.format用法:
按照{}的顺序依次匹配括号中的值
三者结合使用:
audio_dir = sys.argv[1]
feature_dir = os.getcwd() + '/{}_{}_feature'.format(sys.argv[2], sys.argv[3])