Re: [Gambas-user] Create directory with ftpclient

2014-03-20 Thread RICHARD WALKER
Got it. I'll use my glasses next time - better than squinting at a blur on the screen. R -- Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their ap

Re: [Gambas-user] Create directory with ftpclient

2014-03-17 Thread ISS Boss
He already has a space between them. Check the quoted strings closely. RICHARD WALKER wrote, On 03/17/2014 04:32: Do you need a space between "mkdir" & "example"? -- Learn Graph Databases - Download FREE O'Reilly

Re: [Gambas-user] Create directory with ftpclient

2014-03-17 Thread Jack
Le 17/03/2014 12:35, Tobias Boege a écrit : > On Mon, 17 Mar 2014, Jorge Carri?n wrote: >> This >> >> ftpc.Exec(["MKD " & "newfoldername"]) >> >> Works for me. >> Hope this helps. > > Yeah. You must know that the program "ftp" lets you enter commands which > don't appear in the FTP specification. I

Re: [Gambas-user] Create directory with ftpclient

2014-03-17 Thread Jack
Le 17/03/2014 11:26, Jorge Carrión a écrit : > This > > ftpc.Exec(["MKD " & "newfoldername"]) > > Works for me. > Hope this helps. > Regards Ah ? mkd instead of mkdir. it's work for me too now. Thank's Jorge -- Learn Gra

Re: [Gambas-user] Create directory with ftpclient

2014-03-17 Thread Tobias Boege
On Mon, 17 Mar 2014, Jorge Carri?n wrote: > This > > ftpc.Exec(["MKD " & "newfoldername"]) > > Works for me. > Hope this helps. Yeah. You must know that the program "ftp" lets you enter commands which don't appear in the FTP specification. It then maps these strings to the actual commands, like

Re: [Gambas-user] Create directory with ftpclient

2014-03-17 Thread Jorge Carrión
This ftpc.Exec(["MKD " & "newfoldername"]) Works for me. Hope this helps. Regards 2014-03-17 8:11 GMT+01:00 Jack : > Hello all, > > is somebody know how create a directory with Ftpclient. > I use this code : > > Dim Cmdmk As New String[] > Cmdmk = ["mkdir " & "example"] > Ftpclient.Exec(Cmdmk)

Re: [Gambas-user] Create directory with ftpclient

2014-03-17 Thread RICHARD WALKER
Do you need a space between "mkdir" & "example"? -- Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed le

[Gambas-user] Create directory with ftpclient

2014-03-17 Thread Jack
Hello all, is somebody know how create a directory with Ftpclient. I use this code : Dim Cmdmk As New String[] Cmdmk = ["mkdir " & "example"] Ftpclient.Exec(Cmdmk) I got an error 500 (unknow command) NB : In a console ftp, mkdir example, works. any suggestions would be greatly appreciated Jac