views:

27

answers:

1

IS there any API that can give 'Users' write permission to a file in Vista?

A: 

You would want to modify the ACL of the file. For example see related Win32 APIs to: SetNamedSecurityInfo.

If all of that seems a little frightening to you, you can consider simply running a process that calls: cacls

For example giving a directory everyone permission:

cacls "directoryPathHere" /e /t /g Everyone:f

For more information on the command line parameters type in a command prompt:

cacls /?
Brian R. Bondy