jcifs_1.3.3.examples.Exists Maven / Gradle / Ivy
import jcifs.smb.SmbFile;
public class Exists {
public static void main( String argv[] ) throws Exception {
SmbFile f = new SmbFile( argv[0] );
if( f.exists() ) {
System.out.println( argv[0] + " exists" );
} else {
System.out.println( argv[0] + " does not exist" );
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy