I have Visual Studio 11 (Windows 8 Developer) i have create a downloader file:

string sUrlToReadFileFrom = "http://mysite/1.mp3";
int iLastIndex = sUrlToReadFileFrom.LastIndexOf('/');
string sDownloadFileName = sUrlToReadFileFrom.Substring(iLastIndex + 1, (sUrlToReadFileFrom.Length - iLastIndex - 1));
client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(client_DownloadProgressChanged);
client.DownloadFileCompleted += new AsyncCompletedEventHandler(client_DownloadFileCompleted);
client.DownloadFileAsync(new Uri("http://mysite/1.mp3"), "C:\\Windows\\Temp" + "\\" + sDownloadFileName);

But it doesn't work start! If I change the folder "C:\Windows\Temp" in "E:\Temp" the download start. The drive C:\ doesn't work, why? It is possible save in temp folder or you've other idea?

link|improve this question
4  
+1 for early adoption of W8 :) – Davide Piras Sep 14 '11 at 21:21
3  
thanks for all answer! And remember: Windows is the best – Win8Dev Sep 14 '11 at 21:36
feedback

5 Answers

up vote 3 down vote accepted

try with this:

string tempPath = System.IO.Path.GetTempPath();

does it work?

link|improve this answer
thanks so much man! – Win8Dev Sep 14 '11 at 21:29
feedback

Not having played with Widnows 8 yet, this is only conjecture, but it's likely you don't have write permissions to that location on the C:\ as a standard privilege user.

link|improve this answer
feedback

Use the environment variable instead

Environment.GetFolderPath(Environment.LocalApplicationData)
link|improve this answer
feedback

You could use the temp folder path:

string tempPath = System.IO.Path.GetTempPath();
link|improve this answer
thanks so much!it work – Win8Dev Sep 14 '11 at 21:25
feedback

Use one of the following:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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