如何通过输入包含文件路径的变量在 powershell 中打开文件?
How to open a file in powershell, by entering the variable which contains the file's path?
在 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 时,returns 是 $path
的字符串值,因此,我如何通过文件的路径来启动文件分配给一个变量?
只需在键入包含文件路径的变量之前添加 &
符号,如下所示:& $path
在 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 时,returns 是 $path
的字符串值,因此,我如何通过文件的路径来启动文件分配给一个变量?
只需在键入包含文件路径的变量之前添加 &
符号,如下所示:& $path