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 - << C# VERSION >>


Copy the content form a file to another


Dim outfile As TextWriter = File.AppendText("c:/CopytoFile.txt")
Dim infile As TextReader = File.OpenText("c:/InFile.txt")
Dim Str As String
While( infile.ReadLine() )
  outfile.WriteLine(Str)
End While
infile.Close()
outfile.Close()



Download Code...


Print Page


 








Page top

risorse per webmaster