<!--#include file="AspUser.inc"-->
<HTML>
<BODY>
<%
' Give a user Full Control to a file or directory
Set AU = Server.CreateObject("Persits.AspUser")
Set File = AU.File("d:\somefile.txt")
File.AllowAccess "peter", GENERIC_ALL
%>
</BODY>
</HTML>