使用shutil库时,复制文件有问题。每次将文件从一个位置复制到另一个位置时,我都使用不同的文件名。这就是为什么我将文件名的变量名设置为“ name1”。有人可以帮忙吗?谢谢! 我正在使用的代码如下:
import os
from shutil import copyfile
path1 = '/home/smc/sw_files'
path11 = '/data/smc'
name1 = data
copyfile('path1 + '/' + name1', 'path11 + '/' + name1')
这是我得到的错误:
Traceback (most recent call last):
File "python_gdrive_query.py", line 94, in <module>
copyfile('path1 + '/' + name1', 'path11 + '/' + name1')
TypeError: unsupported operand type(s) for /: 'str' and 'str'