I want to copy the file access rights from one file to another file, under Windows NT.
Printable View
I want to copy the file access rights from one file to another file, under Windows NT.
Use GetNamedSecurityInfo to get the ACL of the first file then use SetNamedSecurityInfo to set the ACL in the second file...
example?