Help with copying pics from CF Card
spockling
Registered Users Posts: 369 Major grins
Is there any way that I can run a script/batch file/action in either xp, dos or photoshop cs that would download my pictures from my cf card(both raw and jpg) into separate directories?
I am trying to automate a few things to speed up my workflow.
Thanks in advance for any help.
I am trying to automate a few things to speed up my workflow.
Thanks in advance for any help.
0
Comments
bump. oh and you should ping nikolai, he's good at this stuff
Portfolio • Workshops • Facebook • Twitter
If you simply want it *done*, always in one way and don't mind some batch file programming it can be relatively easy:
Create new cmd/bat file and set its contents to the following:
Same stuff can be achieved in a less arcane way via VB script (which is supported on most of the nowadays PCs automatically)
Finally, if you want auto detection of the card insertion/removal, persistent settings, fancy progress indicator - well, this is a subject for custom programming...:-)
HTH
Nik
Thanks for the referral, Andy, much obliged:-)
Thanks again
http://lonepine.shutterbugstorefront.com
If you know the dir naming pattern and it's simple enough (like folder1, folder2, etc) you can wrap the whole thing into another for-loop.
You can check directory existence via
If it is not that simple and you only know the location (or even need to ask for it), you have to go with more complex solution.
VBS (or JS, for that matter) can take you a bit farher. Complete refererence on Windows scripting can be found at this msdn location. Pay especial attention to the file system object of the script runtime, that's where you can enumerate all the folders and copy files. They have plenty of examples, if you did any basic scripting before you'll find it very easy to follow..
HTH
Nik