Quote:
Originally Posted by Jamie the Kiwi
Is there any way to change the extension from .html to .txt on say 1000 files, all in folders and sub-folder? (a website source-code download) Or would you thing I'd have to change each one?
|
If you want to use a program: search for "batch rename", lots of freeware available for many operating systems..
In linux from the terminal, just use:
Code:
rename -v ’s/\.htm$/\.html/’ *.htm
which renames all htm files in html)
EqX