I tried to write a file to my phisical locations D:\Nithesh . So wrote the code like below :
File.Create(filePath);
Stream outputStream = File.Open(filePath,FileMode.Open,FileAccess.ReadWrite);
But I was getting exception saying "Access to path is denied".
I did try isolated storage . But that really didn't suit my requirements. How else can I code this ?