vote up 0 vote down star

I have an ASP.NET page that will run on a shared hosting service (e.i. I'm leasing space on a single server that also serves content for other people) and I need a way to find a directory that I can save files in and that will not get hosted as web content. The file will be long lived and should be the same across sessions, visits, etc. I think App_data might work.

Is there a method or property that will give me an absolute path to such a directory?


Kinda like this question that doesn't have a useful answerer.

flag

50% accept rate

5 Answers

vote up 4 vote down

App_Data is safe because by default you can't download file from there by typing in a URL to your browser.

IsolatedStorage is good if you need to isolate users from each other. IsolatedStorage requires less collaboration with your IIS admin when it comes to granting NTFS rights to folders outside of your virtual directory. Blobs in the database are possibilities, too but the extra effort involved with blobs in databases makes it a last resort choice.

link|flag
vote up 3 vote down

in /App_Data/ ?

link|flag
1  
How do I find the path to that? I'm not willing to go on blind faith that ./App_Date/ will get me to the right spot. – BCS Jul 22 at 18:59
4  
@BCS: Server.MapPath("~/App_Data") – Fredrik Mörk Jul 22 at 19:10
Where is Server? the only links Google is finding seem to be for use in .aspx files and I need this in a .cs file. – BCS Jul 22 at 19:43
It seems I can get to one under HttpContext.Current.Server... now to see if it works. – BCS Jul 22 at 19:53
1  
@BCS, yes either HttpContext.Current.Server or the Server property of the current Page (if you are within a page request). – Fredrik Mörk Jul 22 at 20:06
vote up 1 vote down

Get a fileserver going.

Or a shared directory that all the web servers can access.

link|flag
I don't own any servers where that can be done :( – BCS Jul 22 at 19:00
By the question you asked, you have multiple web servers, delegate one of them as a file server and web server.(see if you can add a separate disk as well, put the files on the new disk). Share the folder, and have all the web servers access the shared folder. – Chris Brandsma Jul 22 at 19:51
If you are dealing with a single web server...App_Data – Chris Brandsma Jul 22 at 19:52
Why are you assuming I have more than one server? The 'etc.' in 'sessions, visits, etc.'? It does NOT include servers. – BCS Jul 22 at 21:21
Because, in general, people only worry about sharing files when they are dealing with web farms. Since you are not, you have an easy answer: stick everything in App_Data and not worry about it. – Chris Brandsma Jul 22 at 21:44
vote up 0 vote down

Due to permissions that must be established on the directory housing these files it is usually for the best that it not be in your application's path. Other than that it really just comes down to what you have available, and how you want to manage it.

link|flag
vote up 0 vote down

If data is static - you can store it in resources too.
At least - i haven't heard any arguments why that is bad.

link|flag
It's not static :( – BCS Jul 22 at 19:40
Then use App_data as Morten already mentioned. – Arnis L. Jul 22 at 19:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.