在DOS下怎样把D盘里的文件转移到E盘里.怎样输入命令

想把D盘中的文件夹TOOLS转移到E盘....
2026年09月21日 19:30
有2个网友回答
网友(1):

xcopy d:\tools\*.* e:\tools

试试,dos下未必有xcopy命令的。

e:
md tools
d:
cd tools
copy *.* e:\tools

网友(2):

move D:\TOOLS E:\