Home > OS >  Could you tell me how to read the local DOS file?
Could you tell me how to read the local DOS file?

Time:10-06

Local batch file read the server files,
Such as: read the file:

http://10.10.10.10/123.txt
Or
http://10.10.10.10/123.xml

Reference code:
 
@ Echo Off
The Set/p key=& lt; 123. TXT
Echo key % %
Pause

CodePudding user response:

Pure with batch can't do that, you can go to download a wget for Windows, and then call in batch wget,
 wget http://c.csdnimg.cn/public/common/toolbar/images/f_icon.png - O "D: \ 1. PNG" 
  • Related