Jahatte jetzt einfach mal einen ordner test angelegt und gespeichert das klappt auch. kann man vorher auch noch abfragen ob der ordner vorhanden ist ? und wenn nicht soll er erstellt werden ?
PHP:
<?php
$filename = '/path/to/';
if (file_exists($filename)) {
print "The file $filename exists";
} else {
print "The file $filename does not exist";
}
?>