3
我是PowerShell的新手,我遇到了一個我無法處理的問題。 我必須讓我的功能分析很多文件夾在一排,但是當我給的參數在我的功能我PROGRAMM不會工作...PowerShell - 無法識別功能
Param(
[string]$fPath
)
analyse $fPath
$importList = get-content -Path C:\Users\lamaison-e\Documents\multimediaList.txt
$multimediaList = $importList.Split(',')
function analyse{
Param(
[parameter(Mandatory=$true)]
[String]
$newPath
)
cd $newPath
$Resultat = "Dans le dossier " + $(get-location) + ", il y a " + $(mmInCurrentDir) + " fichier(s) multimedia pour un total de " + $(multimediaSize) + " et il y a " + $(bInCurrentDir) + " documents de bureautique pour un total de " + $(bureautiqueSize) + ". La derniere modification du dossier concerne le fichier " + $(modifDate)
$Resultat
}
它工作時,「分析」 didnt存在,但停止工作只是之後。 CommandNoFoundException。這可能是一個愚蠢的錯誤,但我不能處理它...謝謝你的時間。
'function'是不是一個聲明,它是一個命令,而必須執行創建/修改功能。 – PetSerAl