Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

My file tree looks like this:

  1. Parent folder
    • Subfolder
      • Subsubfolder
    • Subfolder
      • Subsubfolder
    • Subfolder
      • Subsubfolder

I'd like to move all subsubfolders to the parent folder without changing the structure of the subsubfolders. How do I do this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
323 views
Welcome To Ask or Share your Answers For Others

1 Answer

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

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

see https://stackoverflow.com/a/33276986/4934937


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...