且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

将文件夹移到父级(Windows)

更新时间:2023-01-15 23:02:01

在父文件夹中创建一个move.bat并运行以下命令:

Create a move.bat in the parent folder and run this:

FOR /R "." %%F IN (.) DO (
move "%%F" ".")

请参见 https://***.com/a/33276986/4934937