1 import jcifs.smb.*;2 3 public class GetSecurity {4 5 public static void main( String [] argv ) throws Exception {6 7 SmbFile file = new SmbFile( argv[0] );8 ACE[] security = file.getSecurity(true);9 10 for (int ai = 0; ai < security.length; ai++) {11 System.out.println(security[ai].toString());12 }13 }14 }15