vote up 3 vote down star
1

Does anyone have a set of classes / components that will work with Delphi 2009 (Unicode) to read and write NTFS file permissions?

There was a thing called "NTSet" - but they stopped development at Delphi 2006 about 3 years ago :-(

Any other takers??

Thanks! Marc

flag

Also, as for NTSet, I'm a registered user. I used the components with Delphi 2006, and they worked well. I upgraded to Delphi 2007 and they still continued to work flawlessly. Not sure how they will work with 2009 though. – Mick Feb 3 at 20:35
Since a lot of the core stuff has been made ready for Unicode, the change between versions is probably bigger than between 2006 and 2007, I would think.... – marc_s Feb 3 at 21:26

3 Answers

vote up 8 vote down check

JCL has units to deal with file permissions, and they claim D2009 compatibility.

link|flag
I believe the best link would be to here: blog.delphi-jedi.net/security-library – Mick Feb 3 at 20:41
Documentation for the above security library is here: jwscldoc.delphi-jedi.net – Mick Feb 3 at 20:42
Thanks - I'll see how that library lives up - looks promising! – marc_s Feb 3 at 21:28
vote up 1 vote down

Colin Wilson's "NT low-level" component set wraps the APIs you need, and supports Delphi 2009 as well as earlier releases. However you may need to rely on the MS documentation and samples if you need detailed help to implement a specific operation. You can find the components (and others) at http://www.wilsonc.demon.co.uk/delphi.htm. They are freeware/donationware. I have found many uses for them over the years.

link|flag
Colin's stuff is high quality and extremely useful. +1 – gabr Feb 4 at 8:01
vote up 0 vote down

Although not native Delphi, you could use SetACL. With that, you have 2 options. You can shell-out and call SetAcl.exe from your Delphi program, or you can use the SetACL.OCX and call it directly from your code.

Of course, you'd need to distribute SetAcl.ocx with your application, but it works very very well.

link|flag
As long as their are other ways, I'd definitely prefer a native Delphi way over OCX or shelling out to a EXE - but thanks anyway! – marc_s Feb 3 at 21:27

Your Answer

Get an OpenID
or

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