如何在python中复制和移动另一个文件夹或目录?

时间:2018-06-14 09:20:02

标签: python

我想将文件复制并移动(或粘贴)到备份程序等文件夹中。 但我不知道该怎么做:( 我试过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按下按钮即可。

1 个答案:

答案 0 :(得分:1)

副本:

from shutil import copy
copy(source,destination)

举:

from shutil import move
move(source,destination)