rar_command = 'winrar a -r %s %s' % (target,source)
創(chuàng)新互聯(lián)專(zhuān)注于企業(yè)網(wǎng)絡(luò)營(yíng)銷(xiāo)推廣、網(wǎng)站重做改版、右玉網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5頁(yè)面制作、商城網(wǎng)站開(kāi)發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為右玉等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。
改為
rar_command = 'tar -zcvf %s %s' % (target,source)
shutil 是高級(jí)的文件,文件夾,壓縮包處理模塊。
1.shutil.copyfileobj(fsrc, fdst[, length])
將文件內(nèi)容拷貝到另一個(gè)文件中
import shutil
shutil.copyfileobj(open('old.xml','r'), open('new.xml', 'w'))
2.shutil.copyfile(src, dst)
拷貝文件
shutil.copyfile('f1.log', 'f2.log')
3.shutil.copymode(src, dst)
僅拷貝權(quán)限。內(nèi)容、組、用戶均不變
shutil.copymode('f1.log', 'f2.log')
4.shutil.copystat(src, dst)
僅拷貝狀態(tài)的信息,包括:mode bits, atime, mtime, flags
shutil.copystat('f1.log', 'f2.log')
5.shutil.copy(src, dst)
拷貝文件和權(quán)限
shutil.copy('f1.log', 'f2.log')
6.shutil.copy2(src, dst)
拷貝文件和狀態(tài)信息
shutil.copy2('f1.log', 'f2.log')
7.shutil.ignore_patterns(*patterns)
shutil.copytree(src, dst, symlinks=False, ignore=None)
遞歸的去拷貝文件夾
shutil.copytree('folder1', 'folder2', ignore=shutil.ignore_patterns('*.pyc', 'tmp*'))
shutil.copytree('f1', 'f2', symlinks=True, ignore=shutil.ignore_patterns('*.pyc', 'tmp*'))
8.shutil.rmtree(path[, ignore_errors[, onerror]])
遞歸的去刪除文件
shutil.rmtree('folder1')
9.shutil.move(src, dst)
遞歸的去移動(dòng)文件,它類(lèi)似mv命令,其實(shí)就是重命名。
shutil.move('folder1', 'folder3')
10.shutil.make_archive(base_name, format,...)
創(chuàng)建壓縮包并返回文件路徑,例如:zip、tar
創(chuàng)建壓縮包并返回文件路徑,例如:zip、tar
base_name: 壓縮包的文件名,也可以是壓縮包的路徑。只是文件名時(shí),則保存至當(dāng)前目錄,否則保存至指定路徑,
如:www ? ? ? ? ? ? ? ? ? ? ? ?=保存至當(dāng)前路徑
如:/Users/wupeiqi/www =保存至/Users/wupeiqi/
format: 壓縮包種類(lèi),“zip”, “tar”, “bztar”,“gztar”
root_dir: 要壓縮的文件夾路徑(默認(rèn)當(dāng)前目錄)
owner: 用戶,默認(rèn)當(dāng)前用戶
group: 組,默認(rèn)當(dāng)前組
logger: 用于記錄日志,通常是logging.Logger對(duì)象
在你的pythonTar目錄下建立一個(gè)__init__.py的空文件。
然后運(yùn)行代碼應(yīng)該可以正常運(yùn)行了,我試過(guò)了,
再就是我在Python中從來(lái)沒(méi)有用過(guò)語(yǔ)句后面加分號(hào),今天也見(jiàn)識(shí)了,居然還可以運(yùn)行。
#模塊文件
[root@-xl?PythonTest]#?vim??pythonTar/math.pyc?
"""bbbbbbbbbbbbbbbbb"""
from?functools?import?reduce
def?jieC(a):
listSer?=?[];
for?item?in?range(1,a+1):
listSer.append(item)
return?reduce(lambda?x,y:x*y,listSer);
"""cccccccccccccccccc"""
def?jia(a,b):
return?a+b
#測(cè)試文件
[root@-xl?PythonTest]#?vim?test.py
"""aaaaaaaa"""
import?pythonTar.math
a?=?5;
b?=?2;
print(pythonTar.math.jia(a,b));
print(pythonTar.math.jieC(a));
#測(cè)試結(jié)果
[root@-xl?PythonTest]#?python?test.py
7
120