Program to convert file extensions?

UF Jspec

Senior member
Oct 15, 1999
609
0
0
I once found a program to mass convert file extensions in one of those ATOT useful tool threads. Anyone have a link to a download?
 

UF Jspec

Senior member
Oct 15, 1999
609
0
0
Originally posted by: KnightBreed
Stupid question, but why not just use the REN command in a MS-DOS console?

Because I am trying to convert about 500 .bak to .txt

 

larciel

Diamond Member
May 23, 2001
4,590
8
81
PCE 1.60 does the trick for me

~~~~~~~~~~~~~~~~~~~```


Thank you for downloading Property Cafe.
Property Cafe is a shareware that you can try for 30 days for free.
If you like this software, please click [BuyNow] button and consider registering it for 6.00 USD.

Customer support:
Registered users have debugging and technical online support.
Debugging support means updates of the product as well as user-reported bugging fixes.

Web
http://www.kazusoftware.us

Email
info@kazusoftware.us


****** Software Overview ******

Property Cafe is a simple and safe file properties transformer. You can change three file attributes(Read-Only, Hidden, Archive) at a time, and can change two file timestamps(Created, Modified). The renaming has ten functions(replace, insert, add, case, rename with numbers, rename with timestamp, rename with file size), and you can rename files and file extensions by different function at a time. Furthermore, the renaming has functions, such as preview, undo, errorlog and same name alert.


****** License Agreement ******

Property Cafe is owned by KazuSoftware and is protected by international treating provisions. The use of this software is limited to one registerd user. This software is distributed "as-is". You use this software at your own risk. KazuSoftware assumes no liability for any damage. If you do not agree to the terms of this license, do not use this software.
 

hjo3

Diamond Member
May 22, 2003
7,354
4
0
for file in *.bak ; do mv $file `echo $file | sed 's/\(.*\.\)bak/\1txt/'` ; done