KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > GetSecurity


1 import jcifs.smb.*;
2
3 public class GetSecurity {
4
5     public static void main( String JavaDoc[] argv ) throws Exception JavaDoc {
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
Popular Tags