yes !!
finally it works like that :
//var inet:Inet=new Inet();
ftp = Inet.openFtp("ftp://exoa.fr",21,"exoa","exoa4ever");
ftp.connect();
try{
g.trace(ftp.currentDir);
g.trace("yes");
}catch(e:*){
g.trace("no");
}
I don't know why we havn't to instanciate Inet, but.. thank you for your help =) the second parameter is actually a number and not a string!
|