Morpheusweb.it - Risorse per webmaster: script, ASP.NET, C#, Visual Basic .Net, tutorial, asp, javascript, css, php, html, java, ADO, VBScript, forms, frames, Active Server Pages, Dynamic HTML, database, gratis per webmaster e webdesigner

Copy from a file - << VB.NET VERSION >>


Copy the content form a file to another


TextWriter outfile= File.AppendText("c:/CopytoFile.txt");
TextReader infile = File.OpenText("c:/InFile.txt");
String Str;
while((Str = infile.ReadLine())!=null)
  outfile.WriteLine(Str);
infile.Close();
outfile.Close();



Download Code...


Print Page


 


Page top

risorse per webmaster