I\'ve been searching around the internet, but couldn\'t find any useful answer.
I have an ASP.NET web site, which is deployed on server. The ASP.NET web site on the
Get file contents in byte[] from W drive and write it to local file.
byte[] data = File.ReadAllBytes(WDriveFilePath) FileStream file = File.Create(HttpContext.Current.Server.MapPath(MyLocalFile)); file.Write(data, 0, data.Length); file.Close();