Click here to Skip to main content
15,886,689 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi! I have a folder containing many zip files. I wana restrict access to each file to a specific user (each file is for a specific user) in a way that other users cant access it even by having it's direct URL. How can I do this in webamtrix? Does the type of file have anything to do with the solution?
Posted

1 solution

If you use windows authentication and impersonation, you can set file system level ACL's. But that's not a good idea.
You should make your own "file server" on asp.net base. The concept is here: File Download in ASP.NET and Tracking the Status of Success/Failure of Download[^]. You can extend it to check user access stored in a database for example, and of course to give access not only to a specified file.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900