最近进行测试版本升级比较频繁,总是会建一个按日期分布的文件夹,每次都要重复的进入一个最近时间内目录下去查找文件,于是就写了一个脚本
可以直接打开最近时间的文件夹
import os
recent = []
def recent_file():
for i in os.listdir(os.getcwd()):
if i.isdigit() :
recent.append(i)
#### D:\Svn\yunwei\测试管理\20161124
own_dir = os.getcwd()
### print os.getcwd() ##获得D当前所在目录
### print os.path.abspath(r"list_test") ##获得该脚本的绝对路径
os.chdir(r"D:\Svn\yunwei\测试管理") ###跳转到目标目录
### print os.getcwd() ##获得该目标目录的绝对路径
recent_file()
print max(recent)
os.startfile (max(recent))
##os.chdir(max(recent))
##print os.getcwd()
'''
for i in os.listdir(os.getcwd()):
if i.isdigit() :
print i
'''