代碼如下:
import os
def load() :
filename = os.getcwd() + r'/fromto.txt'
if os.path.isfile(filename) :
f = open(filename)
try :
lines = f.readlines()
finally :
f.close()
return lines
else :
print('請創建fromto.txt.')
input()
exit()
def display(_lines) :
linenum = 1
s = '序號 源文件 目標文件/n'
for line in _lines :
s += str(linenum) + ' ' + line
linenum += 1
return s + '/n' + r'請輸入序號:'
def work(s, _lines) :
cmd = r'copy /y ' + _lines[int(s)-1]
print(cmd)
os.system(cmd)
if __name__ == "__main__" :
lines = load()
while True :
try :
s = input(display(lines)).strip()
if s.lower() == 'exit' :
break
if int(s) == 0 :
lines = load()
print('已重新加載')
continue
work(s, lines)
except :
input('--Error--')
fromto.txt的格式是每一行左邊是源文件,右邊是目標文件(或目標目錄)。
反正其實就是包裝了copy一下。
fromto.txt內容
代碼如下:
d:/txt/1.txt d:/txt/2.txt
d:/txt/*.txt d:/txt2/
新聞熱點
疑難解答