How to handle blank space in directory name ?
$host = "167.76.11.11";
$file = $file_name . ".gz";
$ftpobj = Net::FTP -> new ($host);
$ftpobj -> login ("xx","yy");
$ftpobj -> cwd ("'/c/Program Files/Apache Software Foundation/Apache2.2/htdocs/uploaded_logs'");
$ftpobj -> cwd ($directory);
$ftpobj -> mkdir ($results);
$ftpobj -> cwd ($directory . $results);
#$ftpobj -> cwd ("'/c/Program Files/Apache Software Foundation/Apache2.2/htdocs/uploaded_logs'" . $results);
$ftpobj -> put ($file);
the above won't work. because of the space in Program Files
can anyone help ??
thanks
$host = "167.76.11.11";
$file = $file_name . ".gz";
$ftpobj = Net::FTP -> new ($host);
$ftpobj -> login ("xx","yy");
$ftpobj -> cwd ("'/c/Program Files/Apache Software Foundation/Apache2.2/htdocs/uploaded_logs'");
$ftpobj -> cwd ($directory);
$ftpobj -> mkdir ($results);
$ftpobj -> cwd ($directory . $results);
#$ftpobj -> cwd ("'/c/Program Files/Apache Software Foundation/Apache2.2/htdocs/uploaded_logs'" . $results);
$ftpobj -> put ($file);
the above won't work. because of the space in Program Files
can anyone help ??
thanks