请参阅下面的代码。该脚本创建变量 $backupFile。如何在下一条语句中使用该变量作为 New-Item 推荐的路径参数的值?
using (var ps = PowerShell.Create())
{
ps.RunspacePool = _runspacePool;
ps.AddScript("$backupFile = [System.IO.Path]::Combine([System.IO.Path]::GetTempPath(),'{0}.bak')".FormatInvariant(databaseName));
ps.AddStatement();
ps.AddCommand("New-Item")
.AddParameter("Force")
.AddParameter("ItemType", "File")
.AddParameter("Path", /* How to use $backupFile?? */));
ps.Invoke();
}