I coded the following script in order to try to gain
access to directory security information.
import win32con
import win32security
security =
win32security.GetFileSecurity('d:\\mystuff\\',
win32con.GROUP_SECURITY_INFORMATION)
When I run this script with the ActiveState debugger,
it shows that the variable "security" references a
pySECURITY_DESCRIPTOR object containing three methods,
none of which expose security information. After
traipsing through the help files, it appears to me the
only way to actually expose this security information
is to make it available to a program written in some
other language, like C. Is that the case? If not, how
can I gain access to this type of information from a
Python script?
Mike Cravitz
__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35
a year! http://personal.mail.yahoo.com/
_______________________________________________
ActivePython mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/activepython