Don't considered this as exact duplicate of this
I am developing asp.net site in vs 2010. I need to get the MyDocuments Path for some storing purpose. So I used the following.
Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)
It works when I run my site in VS. But if I run on IIS(locally), it returns empty value.
So tried to set AppPoolIdentity to LocalSystem. But that is also not worked.
How to overcome this situation? Please advice me.