Mmmm
prueba esta función:
Código php:
Ver originalfunction ftp_directory_exists($ftp, $dir)
{
// Get the current working directory
// Attempt to change directory, suppress errors
{
// If the directory exists, set back to origin
return true;
}
// Directory does not exist
return false;
}
Tomada del manual de PHP.net
Saludos