我正在使用“Bat to Exe Converter”将我的批处理文件转换为 exe 格式。
现在,我遇到了一些问题。每当我转换某些内容并将“工作目录”设置为“当前目录”并以echo on
模式启动我的 exe 时,我最终会检查我的 exe 目录中是否有特定文件:
the actual command: if not exist "%~dp0\file.txt" goto :nofile
output: if not exist "C:\Users\MyUser\AppData\Local\Temp\4CBC\\file.txt" goto :nofile
谁能帮我这个?我不希望它在临时目录中,我希望它在我的 exe 目录中。
谢谢。