Search found 2 matches

by teo74
2013-12-09T12:00:28-07:00
Forum: Users
Topic: save files to lowercase in Windows
Replies: 3
Views: 7040

Re: save files to lowercase in Windows

thank you, but finally I made it in php:

$directory="D:/photos/thumbs";

echo '<h3>Scanning folder '.$directory.'</h3>';
$files = scandir($directory);
foreach($files as $key=>$name){
if ($name[0]!='.'){ // not . or ..
$oldName = $name;
$newName = strtolower($name);

echo '<h4>oldName ...
by teo74
2013-12-07T13:13:01-07:00
Forum: Users
Topic: save files to lowercase in Windows
Replies: 3
Views: 7040

save files to lowercase in Windows

Hi all,
I have the following command:

mogrify -format jpg -path thumbs -thumbnail 200x150 ./1080p/*.jpg

which is: "transform into jpg thumbnails all the jpgs found in 1080p directory and put them into thumbs directory"

Is there a way to save the output files in lowercase?
eg P1090612.JPG to ...