%PDF- %PDF-
| Direktori : /data/www_bck/varak.net_bck/mpd.varak.net/rompr/ |
| Current File : //data/www_bck/varak.net_bck/mpd.varak.net/rompr/imagesToFolders.php |
<?php
include ("vars.php");
include ("functions.php")
$x = simplexml_load_file($ALBUMSLIST);
foreach($x->artists->artist as $i => $artist) {
print "Artist : ".$artist->name."\n";
foreach($artist->albums->album as $j => $album) {
$alb = rawurldecode(html_entity_decode($album->name));
print " Album : ".$alb."\n";
$dir = rawurldecode(munge_filepath($album->directory));
print " Directory : ".$dir."\n";
$img = $album->image->name.".jpg";
print " Image : ".$img."\n";
if (file_exists("albumart/asdownloaded/".$img)) {
print " Downloaded Image Exists\n";
$newfile = $dir."/";
if (file_exists($newfile.$img)) {
print " Overwriting ".$newfile.$img."\n";
system('rm "'.$newfile.$img.'"');
}
system('cp albumart/asdownloaded/'.$img.' "'.$newfile.'"');
}
}
}
?>