我正在桌面上使用命令提示符中的 echo 创建一个 hello_world.txt,这是我的输入。
echo hello world > C:\Users\user\Desktop\hello_world.txt
第一个代码有效,然后我尝试%userprofile%,例如,我想将其给另一个用户。
echo hello world > C:\Users\%userprofile%\Desktop\hello_world.txt
不起作用。任何简单的 echo 命令行来创建文本文件?
你的命令应该是:
echo hello world > %userprofile%\Desktop\hello_world.txt
如果您在
%userprofile%
之前放置任何内容,则不起作用,因为它是完整路径,因此 C:\Users\%userprofile%\Desktop\hello_world.txt
会替换为 C:\Users\C:\Users\cromix\Desktop\hello_world.txt
。
1。要创建新文件和新文本或用新文本覆盖文件中的所有内容:
echo > file_name text_you_want_to_add_in_your_file
2。要从新行添加下一个文本:
echo >> file_name text_you_want_to_add_in_your_file