FTP and application

Discussion of application development using iX Developer, including but not limited to getting started, using the functions tab, properties, objects and installation.
Post Reply
beauto
Posts: 5
Joined: Mon Feb 03, 2014 10:01 am

FTP and application

Post 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

beauto
Posts: 5
Joined: Mon Feb 03, 2014 10:01 am

Re: FTP and application

Post 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);
}

Post Reply