批量查找文件中的某个字符串并将其写入txt文件

时间:2017-03-24 16:19:24

标签: windows batch-file windows-scripting

我是批处理脚本的新手,我正在尝试从ID命名文件夹中的一组文件中找到一个11位数字。我需要将文件夹ID号写入txt文件,后跟11位数字,基本上是这样的:

ID1-12345678910
ID2-12345678911
ID3-12345678912

所有ID命名文件夹都包含唯一的11位数字,因此我无法搜索特定的数字,唯一的标准是它是11位数。文件夹层次结构如下所示:

ID1(folder)

  subfolder1

    subfolder2

      file1 (all these files within the same ID named folder contain the same 11 digit number, so file 1-5 all contain the same 11 digit number corresponding to the ID folder)
      file2
      file3
      file4
      file5

ID2
ID3
ID4
ID5

我将如何做到这一点?

0 个答案:

没有答案