gpt4 book ai didi

powershell - 如何从我所在的同一文件夹中调用文件(在脚本中)

转载 作者:行者123 更新时间:2023-12-03 12:09:03 25 4
gpt4 key购买 nike

我想从脚本 A 调用脚本 B 而不指定完整路径。
我试过

.\scriptb.ps1

但这不起作用。
我真的必须指定整个路径吗?

(对不起,这个非常基本的问题,但谷歌帮不了我!)

最佳答案

可以使用 $MyInvocation如下:

$executingScriptDirectory = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent
$scriptPath = Join-Path $executingScriptDirectory "scriptb.ps1"
Invoke-Expression ".\$scriptPath"

关于powershell - 如何从我所在的同一文件夹中调用文件(在脚本中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9394840/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com