Reputation: 421
A company provides me a .dll with many files.
The dll access to files using this kind of path "C:/folder/file.config
".
I'm working on IIS 8 over a dedicated server BUT I would like to migrate the project on Windows Azure.
I know that Windows Azure provides Virtual Machines, But I wouldn't use it just for this need.
In my dream, I would like to use a web site linked to an Azure Storage and the dll which is located on the web site could access to its "C:/folder/file.config
".
Could Windows Azure has a storage which support basic path ? ("C:/folder/file.config
")
How could I solved this problem without using a Virtual Machine ?
Upvotes: 2
Views: 6405
Reputation: 954
In Azure Websites your website located here :
d:\home\site\wwwroot
which actually mapping for :
C:\DWASFiles\Sites\[your website name]
you can't access any parent folder above that folder in C: partition in Azure Websites
Upvotes: 1
Reputation: 9499
You need to exercise caution before moving onto this Azure solution for the following reasons:
http://blog.codingoutloud.com/2011/06/12/azure-faq-can-i-write-to-the-file-system-on-windows-azure/
Upvotes: 3