1)移动一个文件内的所有内容到另一个文件(不包含该目录)

比如:把文件夹1 里面的所有文件(包含子目录)全部移动到与1同级目录的文件夹2中:

cd 1

for /f "tokens=* delims= " %a in ('dir /a /b') do (move %a ..\2)