CyberDyneSystems
6th of January 2004 (Tue), 17:04
Nothing special,. just a quick and dirty method that may be of some help.
I have way to many files in my 10D folder... I have tried differeing methods of sorting them.. and I am sure you have a good method on your own.
Today I was wishing that of all the various folders,. I would have an easy way of locating all the files that I had done "post processing" to. In other words,. I wanted all my "printables" in one place for easy brwsing with ACDsee.
Again,. there are many ways of addressing this,. but I like quick and dirty.
Clearly I did not want to browse through thousands of photos and pick them one by one.
Are you familiar with "batch files" ?
Tiny little scripts that use DOS commands and automate things.
Very simple and it makes you feel like a softeware programmer when they work :mrgreen:
I wrote a little batch file that would copy all files of a sepcific type to a specific folder. As it happens,. ANY file I have manipulated is saved as either a .psd (photoshop native) or .tif file so that it would not be compressed. (if you allready work with RAW files, this solution will work perfectly for you)
All the unedited images are either RAW or .jpg,. so these files will be ignored.
Here's how to do it;
Create a .txt file on your desktop and input the following text;
xcopy E:\Graphics\Digita~1\Eos10D\*.psd E:\Graphics\Digita~1\Print /s
Where "xcopy" is the ame of the DOS command,
"E:\Graphics\Digita~1\Eos10D" is the PATH to my specific folder where all the image files are.. obviously you will need to alter the PATH to browse to your own image directory...
"*.psd" tells XCOPY to ONLY copy files that are .psd ( * = a wild card telling xcopy ANY file that ends in .psd regardless of name)
"E:\Graphics\Digita~1\Print" Tells XCOPY where the destination folder is,. in this case the folder is called "Print"
"/s" tells XCOPY to include .psd in ANY subfolder within the "Eos10D" folder.
I entered a second line like this;
xcopy E:\Graphics\Digita~1\Eos10D\*.tif E:\Graphics\Digita~1\Print /s
Which is identical except it will copy all the .tif files as well.
Now to make this text file a batch file you simply rename it from;
"Printcopy.txt" to "printcopy.bat"
The .bat extension creates a batch file!
Now,. save changes,. MAKE sure you have created the DESTINATION folder,. and then just double click on the "printcopy.bat" icon on your desktop,. and watch the dos box role!!!!
Now I have copies of all my post prcessed images in one folder. :)
I have way to many files in my 10D folder... I have tried differeing methods of sorting them.. and I am sure you have a good method on your own.
Today I was wishing that of all the various folders,. I would have an easy way of locating all the files that I had done "post processing" to. In other words,. I wanted all my "printables" in one place for easy brwsing with ACDsee.
Again,. there are many ways of addressing this,. but I like quick and dirty.
Clearly I did not want to browse through thousands of photos and pick them one by one.
Are you familiar with "batch files" ?
Tiny little scripts that use DOS commands and automate things.
Very simple and it makes you feel like a softeware programmer when they work :mrgreen:
I wrote a little batch file that would copy all files of a sepcific type to a specific folder. As it happens,. ANY file I have manipulated is saved as either a .psd (photoshop native) or .tif file so that it would not be compressed. (if you allready work with RAW files, this solution will work perfectly for you)
All the unedited images are either RAW or .jpg,. so these files will be ignored.
Here's how to do it;
Create a .txt file on your desktop and input the following text;
xcopy E:\Graphics\Digita~1\Eos10D\*.psd E:\Graphics\Digita~1\Print /s
Where "xcopy" is the ame of the DOS command,
"E:\Graphics\Digita~1\Eos10D" is the PATH to my specific folder where all the image files are.. obviously you will need to alter the PATH to browse to your own image directory...
"*.psd" tells XCOPY to ONLY copy files that are .psd ( * = a wild card telling xcopy ANY file that ends in .psd regardless of name)
"E:\Graphics\Digita~1\Print" Tells XCOPY where the destination folder is,. in this case the folder is called "Print"
"/s" tells XCOPY to include .psd in ANY subfolder within the "Eos10D" folder.
I entered a second line like this;
xcopy E:\Graphics\Digita~1\Eos10D\*.tif E:\Graphics\Digita~1\Print /s
Which is identical except it will copy all the .tif files as well.
Now to make this text file a batch file you simply rename it from;
"Printcopy.txt" to "printcopy.bat"
The .bat extension creates a batch file!
Now,. save changes,. MAKE sure you have created the DESTINATION folder,. and then just double click on the "printcopy.bat" icon on your desktop,. and watch the dos box role!!!!
Now I have copies of all my post prcessed images in one folder. :)