Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テキスト ファイルの内容を 1 行ずつ読み取るにはどうすればよいですか?
私はもう試した
Type "Text.txt"
完全な出力を読み取ります
@Echo OFF FOR /F "Usebackq Delims=" %%a IN ( "File.txt" ) DO ( Echo %%a ) Pause&Exit