Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NET::FTP blank space in directory name

Status
Not open for further replies.

jr8rdt

IS-IT--Management
Feb 9, 2006
59
US
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





 
declare a variable $dirPath = "c:/xx/xx xx/xx" and pass it to cwd.
 
why do you have single quotes inside of double quotes? ALl you need is the single quotes

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
$dirPath = "C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\logs";

$host = "IP";
$file = $file_name . ".gz";
$ftpobj = Net::FTP -> new ($host);
$ftpobj -> login ("x","Y);

$ftpobj -> cwd ($dirPath);
$ftpobj -> mkdir ($results);
$ftpobj -> cwd ($results);
$ftpobj -> put ($file);
$ftpobj -> put ("FILE.txt");
$ftpobj -> quit;
print $file . " is uploaded\n\n";

---
still doesn't work
any help?
 
Use the error log to check where exactly the issue is, as this does not look right:

$ftpobj -> login ("x","Y);

Also, trying ftp'ing the file from default dir to default dir.

 
the login is correct. the directory is created and files are uploaded. it's just not in the directory I specified. It ftped to the c:\ (root)
I confirm that there is no permission issue

so the problem is with
$dirPath = "C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\logs";
 
$dirPath = 'C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\logs';

single quotes instead of double. Or just change the slashes around (window's doesn't really care).

$dirPath = 'C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/logs';

Please turn on input and dump logs and read them.


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top