欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PowerShell包含另一个脚本文件和获取当前脚本所在目录的方法例子

程序员文章站 2022-05-21 18:46:53
本文介绍在powershell脚本中,如何获取脚本文件(.ps1文件)所在的目录。本文介绍在方法适用于powershell 3.0。 在powershell 3.0中,有...

本文介绍在powershell脚本中,如何获取脚本文件(.ps1文件)所在的目录。本文介绍在方法适用于powershell 3.0。

在powershell 3.0中,有一个变量可以很方便的获取脚本所在的目录。我们在e:\ps\script1.ps1和script2.ps1,内容分别如下:

script1.ps1内容:

复制代码 代码如下:

write-host "this is script1.ps1"
write-host "let me call script2.ps1:"

. "$psscriptroot\script2.ps1"

script2.ps1内容:

复制代码 代码如下:

write-host "this is script2.ps1"

运行script1.ps1,将用调用script2.ps1的脚本代码。

注意,在script1.ps1脚本中,我们使用了$psscriptroot这一变量来获取脚本所在的目录。这个变量在powershell 3.0中新增加的一个变量。在运行script1.ps1脚本时,这个变量就代指了e:\ps这个目录路径。

好了,关于powershell使用$psscriptroot获取脚本所在的目录,本文就介绍这么多,希望对大家有所帮助。