Skip to main content

How to create a folder in cmd and move all files inside


  • How to create a folder in cmd and move all files inside
  • Now that you know how to start cmd.exe, lets assume you have a number of text files in your desktop and you like to move all of them to one folder. This is how you would do it 

      1.create the older first called text_files like  md .\desktop\text_files


2.Now move all the text files from your desktop to the folder you created, type move .\desktop\*.txt .\desktop\text_files\



Comments