Need recommendation...
 
Notifications
Clear all

Need recommendation for batch labeling files

7 Posts
6 Users
0 Reactions
570 Views
(@olifer)
Trusted Member
Joined: 17 years ago
Posts: 63
Topic starter  

I have a case involving several thousand pdf, doc, and jpg files that all need to be marked "attorney eyes only" or similar. I am looking for recommendations on solutions that are currently being used that are efficient and cost effective.

Any and all recommendations are greatly appreciated.

Thanks in advance!

Dan


   
Quote
binarybod
(@binarybod)
Reputable Member
Joined: 17 years ago
Posts: 272
 

Would renaming the files with an appropriate prefix or suffix suffice?

http//www.bulkrenameutility.co.uk/Main_Intro.php

Paul


   
ReplyQuote
(@miket065)
Estimable Member
Joined: 21 years ago
Posts: 187
 

Easy to do by creating a Window's Batch file or Applescript.


   
ReplyQuote
(@armresl)
Noble Member
Joined: 21 years ago
Posts: 1011
 

Mike, not a lot of people know how to make batch files or scripts.

Do you have the coding for a batch file he could use to cut and paste?

Easy to do by creating a Window's Batch file or Applescript.


   
ReplyQuote
(@bithead)
Noble Member
Joined: 20 years ago
Posts: 1206
 

D-FileMU

ReNamer

File Grinder

Advanced Renamer


   
ReplyQuote
jhup
 jhup
(@jhup)
Noble Member
Joined: 16 years ago
Posts: 1442
 

I usually do not rename files.

The problem with renaming them is you lose some possible information in renaming. With so few files mrgreen I simply use Excel, and "insert" extra text. Such as
<original file name>.my-special-note.<original extension>
Do a dir /B /S > mylistoffiles.txt at a DOS prompt.
This will create a file named mylistoffiles.txt where ever you ran it.

Then open it up in Excel, and have at it. idea left(), right(), concatenate(), append(), replace() and such are all your friend.

once you get the result as you like it in a column, make a new column that makes a text such as

REN <original file name> <new file name>
Save just that column out as a .bat file, then run it.

done.

Quick, dirty. Works.


   
ReplyQuote
(@miket065)
Estimable Member
Joined: 21 years ago
Posts: 187
 

Mike, not a lot of people know how to make batch files or scripts.

Do you have the coding for a batch file he could use to cut and paste?

Easy to do by creating a Window's Batch file or Applescript.

Quick and dirty

1 Create a folder and move all the files to be renamed into it.
2 Create a new text file in the same folder.
3 Enter something similar to "ren *.jpg PrefixYouWant*.jpg" w/o quotes.
4 Save the text file and then rename it to have a .bat extension.
5 Double click on the .bat file to rename the files.


   
ReplyQuote
Share: