调用Out-File时出错:无法将参数绑定到参数FilePath

时间:2017-09-27 15:09:20

标签: powershell

我有一个脚本可以创建一个html文件,然后是一个将文本附加到文件的函数,但是在调试和执行期间它都会出错。

我觉得-Append部分或字符串中的某些内容不正确?

Cannot bind argument to parameter 'FilePath' because it is null.
Out-File : Cannot bind argument to parameter 'FilePath' because it is null.
At D:\Automation\Fragementation\EVSQLFragmentationReport.ps1:83 char:11
+     Out-File $fileName -InputObject "" -Append
+              ~~~~~~~~~
    + CategoryInfo          : InvalidData: (:) [Out-File], ParentContainsErrorRecordException

整个代码非常大,我有以下部分的建议:

Function writeHtmlFooter {
    Param($fileName)
    Out-File $fileName -InputObject "</body>" -Append
    Out-File $fileName -InputObject "</html>" -Append
}

0 个答案:

没有答案