I want to port a c++ native code program onto azure. So far I've gotten it to sort of work by exporting the C++ program as a .dll and calling it with a webrole similar to this tutorial http://msdn.microsoft.com/en-us/wazplatformtrainingcourse_windowsazurenativecodevs2010_topic2
The thing is, the native code reads local files using ifstream.
Is there a way I can get the native code to read files from the blob storage in azure?
Thanks.
this question How to access an azure storage blob as if it were a local file? seems like it would answer my issue, except the answer doesn't really make sense to me...