// Connect to share using the samba URL specified
sw.start();
SmbFile root = new SmbFile(smbURL, auth);
// Force connection with the share to be established before the first
// use of the file reference object
root.connect();
sw.stop();
System.out.printf("CONNECTION DELAY : %s\n", sw.getTime());
return root;
}