vote up 1 vote down star

Hi, I want the asp application to create a folder that has access only to the account the application was running with (i.e. asp account?)

I actually wanna use this one, but I don't know how to use the "Computer\CurrentAccount" dynamically.

I want to get the current working account.

Thanks.

flag

Have you looked at the directory example here: msdn.microsoft.com/en-us/library/… – Marc Gravell Jun 17 at 12:30

1 Answer

vote up 1 vote down check

There is an example of creating a DirectorySecurity instance and adding an ACE for a named user here (but use the default constructor to start with an ampty ACL).

To get the SID of the account there are two possibilities (these need testing):

The first approach is to rely on the owner of process being the owner of the directory. This is likely to break if doing impersonation (e.g. under Windows Authentication to have the client's identity used for access control to filesystem content):

var ds = new DirectorySecurity();
var sid = new SecurityIdentifier(WellKnowSitType.CreatorOwnerSid, null)
var ace = new FileSystemAccessRule(sid,
                                   FileSystemAccessRights.FullControl,
                                   AccessControlType.Allow);
ds.AddAccessRule(ace);

The second approach to to get the process owner from the process Token, this will require P/Invoke. This includes an example: http://www.codeproject.com/KB/cs/processownersid.aspx, once you have the SID create a SecurityIdentifier instance for it and follow the above to create the ACL.

link|flag
I want the "Computer\User" to be dynamic. – Shimmy Jun 17 at 12:54
@Shimmy: I thought you might :-) ... expanding. – Richard Jun 17 at 13:31
Oh. sorry for bothering, I wanna restrict all other user as well, can you please tell me how i could do that? – Shimmy Jun 17 at 15:00
Restrict to what? An ACL with a single ACE will provide no access to anyone else. – Richard Jun 17 at 21:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.