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
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
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
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
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
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)
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
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