如何通过输入包含文件路径的变量来在Powershell中打开文件?

时间:2018-10-10 15:29:42

标签: powershell execution

powershell中,就像在cmd中一样,您必须输入文件的路径,包括文件本身,或者如果您与文件所在的位置相同,您只需键入文件名,下面显示每种情况的示例:

# if the file is a different location
[Path to the file]\[fileName]

# if the file is in the same location
.\[fileName]

我想要做的是将文件的路径分配给变量,然后在我想打开文件时键入变量名,就像这样:

$path = [fileLocation + fileName]

但是,问题是,当我键入变量PowerShell时,会向我返回$path的字符串值,因此,如何通过将文件的路径分配给变量来启动文件? / p>

1 个答案:

答案 0 :(得分:3)

在键入包含如下文件路径的变量之前,只需添加&符号即可:& $path