所以我在 python 中使用了一个函数,该函数在 Robotframework 中被调用来将文件从源复制到目标我使用 os.path.join() 和 os.listdir() 和 os.path.normpath() 来获取访问权限到文件夹并使用shutil复制但每次我收到此错误
WindowsError: [Error 3] The system cannot find the path specified: '\\10.28.108.***\\folder\\folder2\\out/*.*'
我的代码
from pathlib import Path
import shutil
import os
#filename = Path ("\\10.28.108.***\folder\folder2\out\001890320181228184056-HT.xml")
source = os.listdir("\\10.28.108.***\folder\folder2\out")
destination = "\\10.28.108.***\folder\folder2\"
for files in source :
if files.endswith(".xml"):
shutil.copy(files, destination)