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
FTP and application
Re: FTP and application
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);
}
{
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);
}