gpt4 book ai didi

windows - 简单的Bat文件,Windows找不到 'nameofthefile'

转载 作者:可可西里 更新时间:2023-11-01 10:04:35 25 4
gpt4 key购买 nike

所以我正在尝试创建一个非常简单的 bat 文件来运行 2 个程序。更具体地说是炉石传说和套牌追踪器。

这是我的球棒:

@echo off 
cd "D:\Games\Hearthstone.Deck.Tracker-v0.12.3\Hearthstone Deck Tracker"
start HearthstoneDeckTracker.exe

cd "D:\Program Files (x86)\Hearthstone"
start Hearthstone Beta Launcher.exe

exit

虽然《炉石传说》可以正常启动,但出于某种原因它找不到牌组追踪器 exe。我直接复制粘贴路径,是正确的,文件存在。

另请注意,我在 python 3.5 中编写了一个简单的代码,并且两个程序都可以正常打开。

那么……这是怎么回事?

最佳答案

试试这个:

cd /d "D:\Games\Hearthstone.Deck.Tracker-v0.12.3\Hearthstone Deck Tracker" 
start HearthstoneDeckTracker.exe

cd /d "D:\Program Files (x86)\Hearthstone"
start "Hearthstone Beta Launcher" "Hearthstone Beta Launcher.exe"

/d 选项允许cd 改变驱动器和目录。引号(和额外参数)是允许 start 运行名称中包含空格的程序所必需的。

关于windows - 简单的Bat文件,Windows找不到 'nameofthefile',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36881317/

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