Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
AW: [geclipse-dev] File Transfer

Hi all

Should that work? I just get the File Store with that Uri and should print out all children = all dirs and files?   


URI uri = new URI("gsiftp://egee016.cnaf.infn.it:2811/";);
	        // GEclipseURI guri = new GEclipseURI( uri );	         	         
	         IFileStore fs = EFS.getStore(uri);
	       String [] ch=fs.childNames(EFS.NONE, null);
	       
	       for (String c:ch){
	    	   System.out.println(c);
	    	   
	       }

EFS.getStore(uri); accepts only uri not GEclipseURI

best regards pod

-- 
Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! 
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer


Back to the top