我使用的是Windows 7 x64,我想复制一些文件和文件夹。如何将自己定位到我想复制的文件夹中并将其中的所有内容移动到新目的地?
我已尝试过堆栈中的一些解决方案,但没有使用它们。
https://stackoverflow.com/search?q=batch+copy+folder+and+subfolders
编辑:
我试过这段代码
for /d /r "c:\" %%i in (*) do if exist "d:\newlocation\%%~ni" (dir "%%i" | find "0 File(s)" > NUL & if errorlevel 1 xcopy /y "%%i\*.*" "d:\newlocation\%%~ni") else (xcopy /y "%%i" "d:\newlocation")
xcopy /y c:\*.* d:\newlocation\
但它说了一些关于错误的参数...
http://prntscr.com/6fvl4t Edit2:我正在使用批处理文件。