name; $targetPath = $data->path; $fullTargetPath = join_paths($filesDir, $targetPath, $targetName); if (!file_exists($fullTargetPath)) { if (mkdir($fullTargetPath)) { // Skopiuj zuploadowany plik do poprawnego miejsca na serwerze http_response_code(200); header('Location: '.$redirectRoute); // Przekieruj z powrotem do strony głównej } else { // W razie gdyby coś nie wyszło po stronie serwera podczas kopiowania pliku http_response_code(500); echo "500 - Sorry, there was an error creating your folder."; } } else { http_response_code(409); echo "409 - File already exists"; } ?>