Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Moving files  (Read 2566 times)

0 Members and 1 Guest are viewing this topic.

vermilderstaff

  • Guest
Moving files
« on: October 01, 2007, 12:08:43 PM »
I have a lot of files all in different  folders and i want to put them into one single directory. i was wondering if there is any faster way of doing it then to just cut and paste the file outside the directory. like maybe a dos command or a program.\

Thanks

SuperDave

  • Malware Removal Specialist


  • Genius
  • Thanked: 1020
  • Certifications: List
  • Experience: Expert
  • OS: Windows 10
Re: Moving files
« Reply #1 on: October 01, 2007, 01:00:06 PM »
Do these files all have a common extension such as .doc ?
Windows 8 and Windows 10 dual boot with two SSD's

vermilderstaff

  • Guest
Re: Moving files
« Reply #2 on: October 01, 2007, 05:57:42 PM »
Yes Mp3

Broni


    Mastermind
  • Kraków my love :)
  • Thanked: 614
    • Computer Help Forum
  • Computer: Specs
  • Experience: Experienced
  • OS: Windows 8
Re: Moving files
« Reply #3 on: October 01, 2007, 09:49:34 PM »
Go Start>Search
In search field put:
*.mp3
(make sure, you are searching your entire C drive)
All mp3 files will be displayed. Left click on first file, push SHIFT, hold it, and left click on last file. All files will be selected (highlighted). Release SHIFT.
Right click on any of those files, and click Copy (or Cut, if you don't want to leave files in old location), then in Windows Explorer navigate to directory where you want to put those files.
Right click on directory name, and click Paste.
Done.

ghostdog74



    Specialist

    Thanked: 27
    Re: Moving files
    « Reply #4 on: October 02, 2007, 03:00:52 AM »
    here's  a simple batch. run it from c:\>
    Code: [Select]
    @echo off
    For /F %%a In ('dir /b /a-d /s *.mp3') do (
     echo %%a
     copy %%a c:\destination 
    )

    vermilderstaff

    • Guest
    Re: Moving files
    « Reply #5 on: October 03, 2007, 02:23:57 PM »
    Awesome thanks a lot. Both of them really helpful.

    Broni


      Mastermind
    • Kraków my love :)
    • Thanked: 614
      • Computer Help Forum
    • Computer: Specs
    • Experience: Experienced
    • OS: Windows 8
    Re: Moving files
    « Reply #6 on: October 03, 2007, 06:17:19 PM »
    You are welcome  ;D