标签: batch-file
这段代码是否正确?我想将用户输入写入连接到字符串的bat文件。
SIGCONT
答案 0 :(得分:1)
我建议确保变量请求有一些实际输入。
Set "file=C:\Users\Public\Documents\user.txt" Set/P "SomeVar=Please enter your identification: " If Not "%SomeVar%"=="" ( >>"%file%" Echo=Identification %SomeVar% )