python写的将一些类型的文件压缩为7z格式
#将一些类型的文件压缩为7z.py
#for folder all file do 7z
import os
import sys
import distutils.file_util
def ImportOkFile():
if(os.path.isfile("D:\\Records\\将一些类型的文件压缩为7z_record.txt")==False):
f=open("D:\\Records\\将一些类型的文件压缩为7z_record.txt","w")
f.close()
f=open("D:\\Records\\将一些类型的文件压缩为7z_record.txt","r")
okList=f.readlines()
f.close()
doneOkList=[]
for okFile in okList:
if(okFile[:3]=="ok "):
doneOkList.append(okFile[0:-1])
return doneOkList
def RecordOkFile(file,preinfo="ok "):
f=open("D:\\Records\\将一些类型的文件压缩为7z_record.txt","a")
f.write(preinfo+file+"\n")
f.close()
def OneLayDir(doDir):
folderfile=os.listdir(doDir)
if len(folderfile)==1 and os.path.isdir(doDir+"\\"+folderfile[0]):
firstfolder=curfolder=doDir+"\\"+folderfile[0]+"\\"
folderfile=os.listdir(curfolder)
while len(folderfile)==1 and os.path.isdir(curfolder+folderfile[0]):
folderfile=os.listdir(curfolder)
curfolder=curfolder+folderfile[0]+"\\"
try:
folderfile=os.listdir(curfolder)
except exception as e:
return Fa
相关文档:
下面是对某文件夹下多个文件下指定文件换名字的实例(为了换名字,因为懒得手动改,折腾了一会搞出来的)
原理很简单,换文件名的话指定path就行 ,具体的自己看吧,仅供参考!
#-*- coding:utf-8 -*-
import os,sys
#=======================================
##对多个文件夹下的文件(夹)进行处理
#============ ......
http://bbs.chinaunix.net/thread-1586782-1-1.html
我刚刚用python写了一段操作excel的脚本,目的是把一个excel文件按照某一列中的字段拆分成多个文件,例如按照城市或者省份等,但是发现处理一个1700行的文件拆分成40多个文件时要运行30分钟左右,性能太慢,请高手帮忙看看怎么才能优化性能,谢谢。
新手写的脚本,请不 ......
http://www.autohotkey.com/forum/topic53773.html
Q:I am searching for is a way to execute AHK commands from a Python script. Is this possible?
A:Yes. Here is an example.
tested with python2.6, requires AutoHotkey.dll in the working directory or path...
ahkpython.py:
#Persistent
dllc ......
Python http://www.python.org/download/ wxPython http://www.wxpython.org/download.php#binaries Vpython http://vpython.org/contents/download_windows.html Matplotlib http://sourceforge.net/projects/matplotlib/files/matplotlib/ PyGlet http://www.pyglet.org/download.html PyGame http://www.pyga ......