Thread MP3 ID3 Tag
(46 answers)
Opened by timehandler at 2012-06-04 15:49
ich habe jetzt das hier eingefügt
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 # Findet das Aktuelle Verzeichnis my $cwd = getcwd; #aus der sub wanted my ($oldlocation,$newlocation); $oldlocation = "$cwd"; print "$oldlocation"; $newlocation = "$cwd/$info[2] - $info[3]/$_"; print "\n$newlocation\n"; move($oldlocation, $newlocation) or die "Could not move '$_' zu '$newlocation':$!"; programm funktioniert noch weiter, aber er verschiebt einfach die datei nicht. als fehlermeldung gibt es jetzt Could not move '01 Casper - XOXO - Kopie.mp3' zu 'G:/perl/casper - xoxo/01 Casper - XOXO - Kopie.mp3':No such file or directory at tag1.pl line 50. obwohl der ordner angelegt wurde. das komische ist das die erstellten ordener immer schreibgeschützt sind,kann ich das irgendwo definieren das sie es nicht mehr sind? Last edited: 2012-06-05 17:51:23 +0200 (CEST) |