Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to find directory rights

Status
Not open for further replies.

markros

Programmer
May 21, 2007
3,150
US
I see a similar topic discussed in this closed thread thread184-1586937

I do understand we can use a test file to find if the user has read-write access to the directory. I am wondering if there is another way to find this info (say, with Windows API functions)?



PluralSight Learning Library
 
Heres an article describing what to do in general:
It uses GetSecurityInfo and GetEffectiveRightsFromAcl besides a few other.

It offers a COM component you should be able to use from VFP, too:

Code:
Local hasWriteAccess
obNet = CreateObject('Pardesi.TrusteeUtil')

hasWriteAccess = obNet.CheckPermissionsOnFile("foo", "bar", "C:\\DataFiles", 0x0002)

? hasWriteAccess

Haven't tested myself, it might work, it might still be easier and safer to try to write a new file to the directory or to use a dbf or to add a record to it within TRY CATCH.

Bye, Olaf.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top