´úÂëÈçÏ£º
import os
import time
source = [r'e:\python',r'e:\temp']
#print(source)
print('Ô´£º')
for spath in source:
print(spath)
target_dir = r'e:\bak'
print('\nÄ¿µÄµØ£º')
print(target_dir)
target = time.strftime('%Y%m%d%H%M%S') + '.rar'
zip_command = 'rar a %s\%s %s' % (target_dir,target,' '.join(source))
if os.system(zip_command) == 0:
print('Successful backup to',target)
else:
print('Backup FAILED')
ÎÊÌ⣺
Çë½Ìһϣ¬' '.join(source)µÄ×÷ÓÃÊǽ«ÁбísourceÖеÄÏîĿת»»Îª×Ö·û´®£¬ÄÇôΪʲôҪÔÚÕâ¸ö·½·¨Ç°¼ÓÉÏ' '.£¿ÕâÊÇʲôÓÃ;£¿ÎªÊ²Ã´²»ÄÜÖ±½ÓʹÓÃjoin(source)£¿ÎÒÊdzõѧÕߣ¬Âé·³¸÷λ²»Áߴͽ̣¬Ð»Ð»£¡
ÒòΪËûÊÇstrµÄÒ»¸ö·½·¨£¬²»ÊÇͨÓú¯Êý¡£¼´Ê¹ÓиöͨÓú¯ÊýÒ²Ó¦¸ÃÏñjoin(source, sep)¶à¸ö·Ö¸ô·û²ÎÊý²Å»áÏ൱...
¶Ôà¸, strµÄÒ»¸ö·½·¨
>>> s=''
>>> dir(s)
.......'find', 'format', 'index', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace', 'istitle', 'isupper', 'join', ...
ÄãÏëÖ±½ÓÓÃjoinÒ²¿ÉÒԵİ¡£¬Ã»ÎÊÌ⣺
import string
string.join(["aaaa", "bbb"])
»òÕߣº
from string