dagger2002
Programmer
ok I need to change 4000 file name extensions from .htm to .php on my mac and was looking for a quick way to do it any ideas?
Thanks
Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
foreach (glob('*.htm') as $filename)
{
$newfilename = preg_replace ('/\.htm$/', '.php', $filename);
rename ($filename, $newfilename);
}
?>