Shutil.copy 和 Glob

发布于 2024-11-16 17:41:04 字数 170 浏览 3 评论 0原文

我正在尝试将包含“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我的黑色迷你裙 2024-11-23 17:41:04

您是否尝试过 如何在 python 中复制文件? 根据半记得的Python和你的错误消息,你是否正在尝试将文件列表复制到目的地?如果是这样,您需要每次都调用副本来迭代它们。

另请参阅

要迭代 python 中的可枚举对象,您需要使用“in”从上面的 unicode 链接中提取的粗略代码

destination = '/etc/tmp/source'
# magic here loads the list of BNALP files into a list variable
# could be something like
# files = os.listdir('/etc/BNALP')
for file in files:
    shutil.copy2(file, destination)

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

destination = '/etc/tmp/source'
# magic here loads the list of BNALP files into a list variable
# could be something like
# files = os.listdir('/etc/BNALP')
for file in files:
    shutil.copy2(file, destination)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文