06-01-2013, 20:11
06-02-2013, 12:05
try to post in the HELP section...
06-09-2013, 05:35
Simply I think you can do this. When the app opening, U will need to download a txt file. It includes which updates are and the links. So after reading it, will automatically download the files and updates.
I think thats what u asked
using System.Net;
private void chckUpdates()
{
using (WebClient Client = new WebClient ())
{
Client.DownloadFile("http://www.abc.com/file/update/myuptd.txt", @"D:\myuptd.txt");
}
}
private void readtheTxt()
{
string[] updateLinks = File.ReadAllLines(@"D:\myuptd.txt");
foreach (string links in updateLinks)
{
using (WebClient Client = new WebClient ())
{
Client.DownloadFile(links.ToString(), @you can use simple method to change the save file name);
}
}
}
Simply add the links of updated files, in the txt file
Hope My answer helped you.
I think thats what u asked
using System.Net;
private void chckUpdates()
{
using (WebClient Client = new WebClient ())
{
Client.DownloadFile("http://www.abc.com/file/update/myuptd.txt", @"D:\myuptd.txt");
}
}
private void readtheTxt()
{
string[] updateLinks = File.ReadAllLines(@"D:\myuptd.txt");
foreach (string links in updateLinks)
{
using (WebClient Client = new WebClient ())
{
Client.DownloadFile(links.ToString(), @
}
}
}
Simply add the links of updated files, in the txt file
Hope My answer helped you.
06-09-2013, 11:54
I made a tut. Plz see it, it might help u