SamSol
SamSol

Reputation: 2881

Set NTFS file permissions in java

How to set NTFS file permissions in java?

Upvotes: 2

Views: 2090

Answers (1)

Bartek Jablonski
Bartek Jablonski

Reputation: 2727

It will be possible with NIO2 in Java 7. Look at this tutorial http://java.sun.com/docs/books/tutorial/essential/io/fileAttr.html, especially getAcl() and setAcl() methods.

Upvotes: 2

Related Questions