从列表中搜索文件

时间:2015-03-24 10:21:26

标签: excel-vba powershell vba excel

我需要读取Excel文件中的列并在共享目录中搜索该文件。

示例:

File.csv

10099
20099
93099

您必须使用10099等搜索文件名,并且需要将文件的路径作为输出。

1 个答案:

答案 0 :(得分:0)

读取列由excehell通过powershell阅读此链接
link1 linke2 这个简单的脚本用于在所有分区中查找特定名称

$name = Read-Host "which name you want find"
 Get-PSDrive | where { $_.Provider -match "FileSystem"} | select Root | foreach { Get-ChildItem $_.Root -Recurse -Name $name -ErrorAction 'SilentlyContinue' }

如果您不想要求用户输入文件名,您可以更改脚本