您的位置:首页 > 其它

批处理删除文件/复制文件

2014-11-27 18:33 155 查看
echo off
del /f /s /q D:\cppwork\VS_CODE\Test\Debug\regtest\*.*<span style="white-space:pre">	</span>//删除文件
rd  /q /s D:\cppwork\VS_CODE\Test\Debug\regtest\<span style="white-space:pre">	</span>//删除文件夹
md D:\cppwork\VS_CODE\Test\Debug\regtest<span style="white-space:pre">		</span>//创建文件夹
copy "C:\Users\Administrator\Desktop\wallet.dat" "D:\cppwork\VS_CODE\Test\Debug\regtest"<span style="white-space:pre">	</span>//复制文件
echo on
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: