我有一个脚本来获取文件夹中的所有 html 文件,我想获取所有 md5 值,这是代码:
$Allfiles=get-childItem("*html")
Foreavch-object($Mfile in $Allfiles)
{
$Md5=calMd5($Mfile)
If($HashQueue.contains($Mfile))
{
Continue
}
Else
{Enqueue()}
}
我无法正确获取文件,如何 foreach 目录中的每个文件?