0
votes
c# system.net.FileWebRequest Access denied error
It looks like the file you are trying to get is on your network rather than through an http call which is what FileWebRequest is for.
Try:
FileInfo fileInfo = new FileInfo(f …
