使用部分名称搜索文件夹中的文件并使用 Python 保存/复制到不同的文件夹

发布于 2024-12-20 14:36:14 字数 155 浏览 0 评论 0原文

我的一个文件夹中有 700 个文件。我需要找到名称中包含“h10v03”的文件,并使用 python 将它们复制到不同的文件夹。

下面是其中一个文件的示例:MOD10A1.A2000121.h10v03.005.2007172062725.hdf

我感谢任何帮助。

I have 700 files in a single folder. I need to find files that have "h10v03" as part of the name and copy them to a different folder using python.

Heres an example of one of the files: MOD10A1.A2000121.h10v03.005.2007172062725.hdf

I appreciate any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

陈年往事 2024-12-27 14:36:14

首先,使用 os.listdir 查找该文件夹中的所有项目。然后你可以使用字符串的 count() 方法来确定它是否有你的字符串。然后你可以使用 shutil 来复制文件。

Firstly, find all the items in that folder with os.listdir. Then you can use the count() method of string to determine if it has your string. Then you can use shutil to copy the file.

×眷恋的温暖 2024-12-27 14:36:14

像这样的事情就可以解决问题。

import os
import shutil

source_dir = "/some/directory/path"
target_dir = "/some/other/directory/path"

part = "h10v03"
files = [file for file in os.listdir(source_dir)
            if os.path.isfile(file) and part in file]
for file in files:
    shutil.copy2(os.path.join(source_dir, file), target_dir)

Something like this would do the trick.

import os
import shutil

source_dir = "/some/directory/path"
target_dir = "/some/other/directory/path"

part = "h10v03"
files = [file for file in os.listdir(source_dir)
            if os.path.isfile(file) and part in file]
for file in files:
    shutil.copy2(os.path.join(source_dir, file), target_dir)
初懵 2024-12-27 14:36:14

必须是蟒蛇吗?
Unix shell 可以很好地为您做到这一点:

cp ./*h10v03* /other/directory/

在 python 中,我建议您看一下 os.listdir() 和 Shutil.copy()

编辑:
一些未经测试的代码:

import os
import shutil

src_dir = "/some/path/"
target_dir = "/some/other/path/"
searchstring = "h10v03"

for f in os.listdir(src_dir):
   if searchstring in f and os.path.isfile(os.path.join(src_dir, f)):
      shutil.copy2(os.path.join(src_dir, f), target_dir)
      print "COPY", f

使用 glob 模块(未经测试):

import glob
import os
import shutil

for f in glob.glob("/some/path/*2000*h10v03*"):
   print f
   shutil.copy2(f, os.path.join("/some/target/dir/", os.path.basename(f)))

Does it need to be python?
A unix shell does that for you quite fine:

cp ./*h10v03* /other/directory/

In python I would suggest you take a look at os.listdir() and shutil.copy()

EDIT:
some untested code:

import os
import shutil

src_dir = "/some/path/"
target_dir = "/some/other/path/"
searchstring = "h10v03"

for f in os.listdir(src_dir):
   if searchstring in f and os.path.isfile(os.path.join(src_dir, f)):
      shutil.copy2(os.path.join(src_dir, f), target_dir)
      print "COPY", f

with the glob module (untested):

import glob
import os
import shutil

for f in glob.glob("/some/path/*2000*h10v03*"):
   print f
   shutil.copy2(f, os.path.join("/some/target/dir/", os.path.basename(f)))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文