Shutil.copy 和 Glob
我正在尝试将包含“BNALP”的所有文件复制到另一个名为“source”的目录...我尝试使用 glob 和 Shutil 函数来执行此操作,但总是出现一条错误消息,指出“TypeError:强制转换为 Unicode:需要字符串或缓冲区,找到列表”。我想知道是否有人可以帮助我朝正确的方向发展,因为我是 python 新手。
I am trying to copy all the files containing 'BNALP' to another directory called 'source'...I tried using the glob and shutil function to do this but an error message always arises stating "TypeError: coercing to Unicode: need string or buffer, list found". I was wondering if anyone could help me in the right direction because I am new to python.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过 如何在 python 中复制文件? 根据半记得的Python和你的错误消息,你是否正在尝试将文件列表复制到目的地?如果是这样,您需要每次都调用副本来迭代它们。
另请参阅
要迭代 python 中的可枚举对象,您需要使用“in”从上面的 unicode 链接中提取的粗略代码
Have you tried the solutions provided on How do I copy a file in python? Based on half-remembered python and your error message, are you trying to copy a list of files to a destination? If so, you'd need to iterate through them calling the copy each time.
See also
To iterate through an enumerable object in python, you would want to use "in" Rough code lifted from unicode link above