Page 1 of 1

FTP and application

Posted: Thu Feb 20, 2014 3:27 am
by beauto
hi,

i stock data on a file for parametere and i must share this accros the network.

what is the correct path for ix record a file on FTP area on T15B ? windows CE

thank

Re: FTP and application

Posted: Thu Feb 20, 2014 3:43 am
by beauto
try
{
TextWriter tw = new StreamWriter(@"\FlashDrive\Project\Project files\savefile.txt");

tw.WriteLine(TextBox1.Text);

//Close the stream
tw.Close();

}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}