Create directory in a website

  • Thread starter Thread starter Aneesh Pulukkul[MCSD.Net]
  • Start date Start date
A

Aneesh Pulukkul[MCSD.Net]

I have a asp.net website and i need to create directories in the
website. Basic requirement is to copy set of files to website(rather
webserver machine) .These files are being referred in the web page
running in the website(webserver). Seems to be a roadblock now.. Would
be a great help if anybody can give some inputs.

Regards,

Aneesh P
 
Why not call the CreateDirectory method on the Directory class? As long
as the user that the process is running under has the appropriate
permissions, you should be fine.
 
Why not call the CreateDirectory method on the Directory class? As long
as the user that the process is running under has the appropriate
permissions, you should be fine.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)




I have a asp.net website and i need to create directories in the
website. Basic requirement is to copy set of files to website(rather
webserver machine) .These files are being referred in the web page
running in the website(webserver). Seems to be a roadblock now.. Would
be a great help if anybody can give some inputs.

Aneesh P- Hide quoted text -

- Show quoted text -

Thanks guys. Sorry for the delay. Got it Nich, CreateDirectory works.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top