尝试批量打开 .txt 文件并返回菜单

Trying to open .txt files in batch and have it go back to a menu

:1
title Opening...                         Twitch Mod Helper v1.0
C:\Users\%username%\Desktop\ModHelper\Files\currnet.txt
GOTO main 

当我这样做时,它不会打开 .txt 并转到 GOTO

您不能简单地调用 .txt 文件。您需要在记事本中打开它或键入它:

在记事本中打开:

:1
title Opening...                         Twitch Mod Helper v1.0
start notepad.exe C:\Users\%username%\Desktop\ModHelper\Files\currnet.txt
GOTO main 

在记事本中打开并等待:

:1
title Opening...                         Twitch Mod Helper v1.0
notepad.exe C:\Users\%username%\Desktop\ModHelper\Files\currnet.txt
GOTO main 

输入命令:

:1
title Opening...                         Twitch Mod Helper v1.0
type C:\Users\%username%\Desktop\ModHelper\Files\currnet.txt
Echo.
GOTO main 

输入 CMD 并等待

:1
title Opening...                         Twitch Mod Helper v1.0
type C:\Users\%username%\Desktop\ModHelper\Files\currnet.txt
Echo.
pause
GOTO main