8
Easy to use tips and articles on VB.NET
Wednesday, February 09, 2011Posted by admin
Copy a file in the file system Supply a source file name and the destination file name CopyFile(“c:\temp\firstfile.txt”, c:\temp\secondfile.txt”) Function Copyfile(ByVal sSource As String, ByVal sDest As String) As Boolean FileCopy(sSource, sDest) If Err.Number = 0 Then Copyfile = True End Function
Comments
Comment#23 Friday, February 11, 2011 Posted by Sumeet Singh
Simple and easy articles on practical tips in using vb.net to develop windows and ASP.NEt applications.