将文件夹从映射的网络驱动器复制到另一个映射的网络驱动器给我一个错误?

时间:2019-02-18 16:28:31

标签: python python-2.5

我正在尝试使用python脚本将文件夹从一个映射的网络驱动器复制到另一个映射的网络驱动器,该文件夹将被触发每周运行一次。

这是我的代码

height+1

我收到一个错误

from distutils.dir_util import copy_tree
from datetime import date

fromDirectory = "M:\Customer"
today = str(date.today())
toDirectory = "Z:\%s\Customer"%(today)
copy_tree(fromDirectory, toDirectory)

但是我实际上知道它是计算机上的有效映射网络驱动器。不能在映射的网络驱动器上使用它吗?还是我没有看到其他问题?我还尝试过使用distutils.errors.DistutilsFileError: cannot copy tree 'M:\Customer': not a directory. \\/作为分隔符,并且出现了相同的错误消息。

0 个答案:

没有答案