Dynamic

Mister E

Centurion
Joined
Jul 23, 2004
Messages
136
I'm trying to create a file manager interface. I want it so the user can create a new directory and then start uploading files to that directory.

Obviously, I need to give the newly created directory write permission before files can be uploaded. How to do this?

Thanks much...
 
So long as you set the ASP.NET application to have write permissions to all subfolders
of the main folder, you should be able to write to it. The person visiting the site isn't
actually writing files directly to the server; they are uploading the files to your
application, which in turn writes them to the server itself.
 
Back
Top