sielfried a écrit :
Z'y êtes pas les gars je crois, il bosse sur ftp là, faut du ftp_* a priori.
Moi j'utilise ça :
Code :
- function ftp_isdir($ftp_id, $path) {
- if (($current_dir = ftp_pwd($ftp_id)) === FALSE) {
- return FALSE;
- }
- $status = @ftp_chdir($ftp_id, $path);
- if ($status === FALSE) {
- return 0;
- }
-
- if (ftp_chdir($ftp_id, $current_dir) === FALSE) {
- return FALSE;
- }
-
- return 1;
- }
|
Ca retourne FALSE en cas d'erreur, 1 si c'est un rép, 0 sinon. Y'a sûrement une méthode plus simple cela dit.
|