| [reply] |
You don't say what operating system you're using. Since permissions are handled in very OS-specific ways, this makes it hard to help.
If you're using Windows NT, the regular Unix file permission bits aren't terribly useful. NT has a more elaborate and fine-grained permission system than the standard Unix one. For NT, you should look at Win32::FileSecurity in libwin32. Likewise, there are different modules for Solaris, DCE, and other ACL schemes. | [reply] |
Hi,
sorry about that, i am on a windows 2000 os. thanks for the help
| [reply] |
if you're using NT you can use cacls to see extended security on the file or directory. "cacls" is not a perl funtion, but i think it comes with the resource kit. i'm still new to perl but i think you might be able to do something like
system("cacls FileName /extention") or something of the sort. Like i said, i am just a newbie still, but i would try something like that first :).
Happy Hunting.
~Ray~ | [reply] |