我必须从总共 180 万个文件中搜索和复制文件。这是我必须做的:
我在一个数组中有 40 个文件名,在一个文件夹中有 18,00,000 个文件。
什么是执行的好选择?
a) pick one file from folder (having 1.8 millions), and loop through 40 files.
OR
b) pick one filename from array and loop through 1.8 million files.
我必须搜索并复制那些包含要在这 180 万个文件中匹配的文件名(存在于数组中)的文件。
请指导我,有理由。