如何在 python 中复制和移动另一个文件夹或目录? [复制]
Posted
技术标签:
【中文标题】如何在 python 中复制和移动另一个文件夹或目录? [复制]【英文标题】:How do I copy and move another folder or dir in python? [duplicate] 【发布时间】:2018-11-24 00:31:57 【问题描述】:我想将文件复制并移动(或粘贴)到备份程序之类的文件夹中。
但我不知道该怎么办:(
我试过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 是通过按下按钮来工作的。
【问题讨论】:
到目前为止,您尝试或研究了什么? How to move a file in Python和/或How to copy a file in Python的可能重复 【参考方案1】:复制:
from shutil import copy
copy(source,destination)
移动:
from shutil import move
move(source,destination)
【讨论】:
以上是关于如何在 python 中复制和移动另一个文件夹或目录? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Git / IntelliJ 将整个文件从一个分支移动/复制到另一个分支? [复制]