
Originally Posted by
doanlephuvinh
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 Code:
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/articl...es-in-c-sharp/
if you want some actions use Delegates Combo it with IEnumerable then a foreach statements
REF:https://stackoverflow.com/questions/...014762#3014762
Add this : https://stackoverflow.com/a/573270/2258541