• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

C# : help for check version app

Newbie Spellweaver
Joined
Aug 19, 2019
Messages
6
Reaction score
1
I want to write an app. It called launch.exe. I want to write a method for check version with that app. Description : when I open that launch.exe , It will check the version from the Version file in current location of that launch. It will compare the version file from ftp server with the version file I had in that current location like I said. If you guys have any code or document about that please help me. Thanks alot!
 
Newbie Spellweaver
Joined
Aug 19, 2019
Messages
6
Reaction score
1
Welcome buddy :) , just a tip : lambda + LINQ c# .. will be good for a start :) Goodluck.
Can you help me a bit more. I want to save the file I have downloaded to current drive. I don't want to save file like the code below

File.WriteAllText("D:\\55_SEPA_30-04-2017.xml", strXMLGenerate); --- not like that

Like I put my app in a folder in D drive, and then , I want to save files right that folder. How can I do that with code. Do you have any tips for me to do that?
 
Joined
Sep 11, 2008
Messages
719
Reaction score
122
Can you help me a bit more. I want to save the file I have downloaded to current drive. I don't want to save file like the code below

File.WriteAllText("D:\\55_SEPA_30-04-2017.xml", strXMLGenerate); --- not like that

Like I put my app in a folder in D drive, and then , I want to save files right that folder. How can I do that with code. Do you have any tips for me to do that?


Yes you can do that here's some tip and example:

firstly,
add this using System.IO; at the top .
then call some built-in functions like
Directory.Exists,
Directory.CreateDirectory...
And then the Path.Combine.
HERE'S SOME CODE
PHP:
string root = @"D:\Temp";  <--- the folder name
if (!Directory.Exists(root)) {Directory.CreateDirectory(root);  }
//else if Exists saves the files of you're app on that directory.
File.WriteAllText(root + "\\"+Filename+".xml", strXMLGenerate);
Ref : https://www.c-sharpcorner.com/article/directories-in-c-sharp/
if you want some actions use Delegates Combo it with IEnumerable then a foreach statements
REF:https://stackoverflow.com/questions/3014737/what-is-ienumerable-in-net/3014762#3014762
Add this : https://stackoverflow.com/a/573270/2258541
 
Last edited:
Back
Top