Downloading files via php ftp

This ftp code downloads the folder and all the files in it without any problems.
I also want it to download a single file additionally.
example:
Source: ./folder/folder/folder/file.zip
Traget: …/dir/dir/dir/dir/dir/dir/file.zip

What change needs to be made?
I tried something but I didn’t succeed

$ftp_server = "ftp.xxx.com"; 
$cid = ftp_connect($ftp_server) 
    or die("Couldn't connect to $ftp_server"); 

$login_result = ftp_login($cid, "user", "pass"); 
if ((!$cid) || (!$login_result)) 
    die("FTP Connection Failed"); 

ftp_pasv($cid, true); // passive FTP connection (comment-out if needed)

ftp_sync('/folder_on_ftp/www/', '/folder_on_new_server/www');

ftp_close($cid);

umask(0); // every directory will be chmod 777

function ftp_sync($_from = null, $_to = null) {
    
    global $cid;
    
    if (isset($_from)) {
        if (!ftp_chdir($cid, $_from)) die("Dir on FTP not found: $_from");
        if (isset($_to)) {
            if (!is_dir($_to)) @mkdir($_to);
            if (!chdir($_to)) die("Dir on local not exists? $_to"); 
        }
    }
    
    $contents = ftp_mlsd($cid, '.');
    
    foreach ($contents as $p) {
        
        if ($p['type'] != 'dir' && $p['type'] != 'file') continue;
        
        $file = $p['name'];
        
        echo ftp_pwd($cid).'/'.$file;
        
        if (file_exists($file) && !is_dir($file) && filemtime($file) >= strtotime($p['modify'])) {
            echo " [EXISTS AND CURRENT]";
        }
        elseif ($p['type'] == 'file' && @ftp_get($cid, $file, $file, FTP_BINARY)) {
            echo " [COPIED]";
        }
        elseif ($p['type'] == 'dir' && @ftp_chdir($cid, $file)) {
            echo "Dir changed to $file<br>\n";
            if (!is_dir($file)) mkdir($file);
            chdir($file);
            ftp_sync();
            ftp_chdir($cid, '..');
            chdir('..');
        }
        
        echo "<br>\n";
    }
}

It is now possible to download both directories and files by arranging them as follows.

$ftp_server = "ftp.xxx.com"; 
$cid = ftp_connect($ftp_server) 
    or die("Couldn't connect to $ftp_server"); 

$login_result = ftp_login($cid, "user", "pass"); 
if ((!$cid) || (!$login_result)) 
    die("FTP Connection Failed"); 

ftp_pasv($cid, true); // passive FTP connection (comment-out if needed)

ftp_sync('/folder_on_ftp/www/', '/folder_on_new_server/www');

ftp_close($cid);

umask(0); // every directory will be chmod 777

function ftp_sync($_from = null, $_to = null) {
    
    global $cid;

    //If it is a file and not a directory
    if (!is_null($_from) && ftp_nlist($cid, $_from) == false) {
        if (isset($_to)) {
            $single_file = basename($_from);
            if (!is_dir($_to)) mkdir($_to, 0777, true);
            if (!chdir($_to)) die("Dir on local not exists? $_to");
            if (ftp_get($cid, $single_file, $_from, FTP_BINARY)) {
                echo $single_file." [COPIED]";
            }
        }
    
    }else{
    // If it is a directory and not a file
    if (isset($_from)) {
        if (!ftp_chdir($cid, $_from)) die("Dir on FTP not found: $_from");
        if (isset($_to)) {
            if (!is_dir($_to)) @mkdir($_to);
            if (!chdir($_to)) die("Dir on local not exists? $_to"); 
        }
    }
    
    $contents = ftp_mlsd($cid, '.');
    
    foreach ($contents as $p) {
        
        if ($p['type'] != 'dir' && $p['type'] != 'file') continue;
        
        $file = $p['name'];
        
        echo ftp_pwd($cid).'/'.$file;
        
        if (file_exists($file) && !is_dir($file) && filemtime($file) >= strtotime($p['modify'])) {
            echo " [EXISTS AND CURRENT]";
        }
        elseif ($p['type'] == 'file' && @ftp_get($cid, $file, $file, FTP_BINARY)) {
            echo " [COPIED]";
        }
        elseif ($p['type'] == 'dir' && @ftp_chdir($cid, $file)) {
            echo "Dir changed to $file<br>\n";
            if (!is_dir($file)) mkdir($file);
            chdir($file);
            ftp_sync();
            ftp_chdir($cid, '..');
            chdir('..');
        }
        
        echo "<br>\n";
    }
    } // 
}
Sponsor our Newsletter | Privacy Policy | Terms of Service