[REBOL] Re: Oneline FTP Probelm

2004-01-12 Thread Behrang Saeedzadeh
Hi Volker > Yes, the example is misleading. you need the full > filename for target. > write/binary > ftp://xxx:[EMAIL PROTECTED]/wwwdocs/behrangsa.png > read/binary %behrangsa.png > should work. > and if behind firewall system/schemes/ftp/passive: > true Thanks. It worked. Behrang. _

[REBOL] Re: Oneline FTP Probelm

2004-01-12 Thread Gerard Cote
Hi, I would first try putting a filename after the Folder name or put a terminating / to specify REBOL wwwdocs is a folder name (by convention I think REBOL is waiting for a / after a folder name) HTH, Gerard - Original Message - From: "Behrang Saeedzadeh" <[EMAIL PROTECTED]> To: <[EM

[REBOL] Re: Oneline FTP Probelm

2004-01-12 Thread A J Martin
Behrang S. wrote: > In the oneliners section I saw the following code snippet for transferring a file via ftp protocol: > > write/binary ftp://user:[EMAIL PROTECTED] > read/binary %file > > I have a file called behrangsa.png (I have copied it to the view directory) and I want to send it to the mac

[REBOL] Re: Oneline FTP Probelm

2004-01-12 Thread Volker Nitsch
Am Dienstag 13 Januar 2004 01:21 schrieb Behrang Saeedzadeh: > Hi > > In the oneliners section I saw the following code > snippet for transferring a file via ftp protocol: > > write/binary ftp://user:[EMAIL PROTECTED] > read/binary %file > > I have a file called behrangsa.png (I have copied it > t