I need to rename several hundred mp3's in a directory. I've tried this php script...but it seems to have missed every file from 19 to 29 (119-129, 219-229, 319-329 etc).
The original names are in no particular order or fashion in how they're named.
What's my best choice to rename these files to song1.mp3, song2.mp3 song3.mp3 etc.?
PHP Code:
<?php
$i = 1;
foreach (glob("/xmas/*.mp3") as $filename) {
copy ("$filename", "/newpopaudio/xmas$i.mp3");
$i++;
}
?>
Recent comments
23 hours 2 min ago
23 hours 7 min ago
1 day 4 hours ago
1 day 10 hours ago
1 day 11 hours ago
1 day 12 hours ago
1 day 17 hours ago
1 day 23 hours ago
2 days 3 hours ago
2 days 5 hours ago