如何在字符串中声明变量

时间:2019-01-30 04:19:02

标签: powershell

我有这个:

[Environment]::GetFolderPath('MyDocuments')

但是我需要声明其余的路径:

\WindowsPowerShell\Modules\SharePointOnline.CSOM\0.1.0\Microsoft.SharePoint.Client.dll'

我该怎么做?

1 个答案:

答案 0 :(得分:0)

有几种方法可以做到这一点 您可以通过声明变量$ VariableName

将对象放入变量中
$Test = [Environment]::GetFolderPath('MyDocuments')

"$Test\WindowsPowerShell\Modules\SharePointOnline.CSOM\0.1.0\Microsoft.SharePoint.Client.dll"

使用 $(),您可以将命令的输出声明为变量

"$([Environment]::GetFolderPath('MyDocuments'))\WindowsPowerShell\Modules\SharePointOnline.CSOM\0.1.0\Microsoft.SharePoint.Client.dll"