我想将文件复制并移动(或粘贴)到备份程序等文件夹中。
但我不知道该怎么做:(
我试过shutil.copy2(filename, example)
但我无法在其他环境中使用它,因为我不知道A.
import os
import shutil
from tkinter import *
from filedialog import *
def func_open() :
global filename
filename = askopenfilename(parent = window, filetypes = (("SMI", "*.smi"), ("All", "*")))
A = os.path.basename(filename)
我使用了tkinter功能。和func_open按下按钮即可。
答案 0 :(得分:1)
副本:
from shutil import copy
copy(source,destination)
举:
from shutil import move
move(source,destination)