Trying to move a lot of files out and up one directory

Soldato
Joined
24 Apr 2006
Posts
6,437
Location
SE England
Hi all


I have multiple folders in a directory, inside them folders are files... I would like to move all them files from those folders up one directory so they are all together. It would take far too long doing it manually there are too many folders.

Im guessing a batch file would be needed? Im no DOS whizz though, can anyone help? or point me to a program that will do it.

Thanks!
 
Its an amazingly simple thing to want to do isn't it just be able to control lots of files in folders! abit of a joke that windows doesn't have anything built in for it.. lol same here id not be a happy person manually cutting and pasting every file

Cheers again for the share, its very powerful little program just used the rename feature aswell :cool:
 
what i'd do..

do a search for *.* in c:\foldername\

it'll show results like...


c:\foldername\folder1\file.txt
c:\foldername\folder2\file2.txt

select all the files in the search results and copy + paste them to say C:\foldertest (for now -incase there are multiple files with the same name)
 
bledd. said:
what i'd do..

do a search for *.* in c:\foldername\

it'll show results like...


c:\foldername\folder1\file.txt
c:\foldername\folder2\file2.txt

select all the files in the search results and copy + paste them to say C:\foldertest (for now -incase there are multiple files with the same name)

haha! ahhh yeah! that would do it lol.. for some reason never crossed my mind doing it like that
 
marc2003 said:
what's wrong with windows search? *.*

or am i missing something? :confused:

It just searches "anything" . "anything", the asterix being a symbol anything...

If you wanted files of the same name and different extensions you'd search:
filename.* or the opposite way round if you wanted just batch files:
*.bat

etc...
 
LeperousDust said:
It just searches "anything" . "anything", the asterix being a symbol anything...

If you wanted files of the same name and different extensions you'd search:
filename.* or the opposite way round if you wanted just batch files:
*.bat

etc...

i think you misunderstood my post. :)
 
bledd. said:
what i'd do..

do a search for *.* in c:\foldername\

it'll show results like...


c:\foldername\folder1\file.txt
c:\foldername\folder2\file2.txt

select all the files in the search results and copy + paste them to say C:\foldertest (for now -incase there are multiple files with the same name)
Ditto.
Thats what i would have done. :).
 
Back
Top Bottom