1 import jcifs.smb.SmbFile;2 3 public class AllocInfo {4 5 public static void main( String argv[] ) throws Exception {6 7 SmbFile f = new SmbFile( argv[0] );8 System.out.println( f.getDiskFreeSpace() );9 }10 }11 12