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