views:

181

answers:

1

Hello everybody,

I am thinking hard about how to play with access rights on several platforms. Now I am reaching Microsoft Windows and permissions on NTFS files/directories.

I must say that I am working in C language. My question is pretty general. I have a username and a file path.

Do I need more information to check if the user has the right to read/write/execute ?

What technology should I use ? ACLs or basic Win32 API ? Something else ?

Thank you for any kind of help.

+1  A: 

What is wrong with the Windows API in that case?

GetSecurityInfo from the platform SDK should help. It returns the owner, groups etc. that are associated with the object (not only files and directories). You then need to further check the returned information against your given username.

HS