David Bogdan said:
I want to set up the server to allow read and write to a
particular file, but not allow the user to copy the
entire file to his or her hard drive. Is there a way to
do this?
Thanks
If a user has the permission to read a file, he or she can copy it since
this does not involve the deletion or modification of the file on the
server. The only way to prevent the copy to take place is to provide an
"interface" between the data and the user. In other words, the user should
only access/modify the data through a "redirector".
To make the point clearer, the file's contents exists as a copy on the
client while the user is reading or modifying it. Think of the file's
contents as a document which does *not* exist at the server, its processed
locally at the client and then changes comitted back to the file on the
server (if any changes there are).
What you seek is a form-based or record-based application that generates the
interface between the data set and the user(s). ASP + ODBC, an MFC or NET
form-based or record-based application, etc...