Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
Copy FileVB.NET source code showing how to copy a file. ' How to copy a file.
Private Sub button6_Click(sender As Object, e As System.EventArgs)
Dim fi As New FileInfo("myImage.gif")
Dim overwrite As Boolean = True
fi.CopyTo("myImage2.gif", overwrite)
End Sub 'button6_Click
|
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2007 Chilkat Software, Inc. All Rights Reserved.