Click to Rate and Give Feedback
MSDN
MSDN Library
Visual Studio 2008
Visual Studio
Visual Basic
D-G Functions
 FileCopy Function

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
Visual Basic Language Reference
FileCopy Function

Copies a file.

The My.Computer.FileSystem Object gives you greater productivity and performance in file I/O operations than FileCopy. See My.Computer.FileSystem.CopyFile Method for more information.

Public Sub FileCopy( _
   ByVal Source As String, _
   ByVal Destination As String _
)
Source

Required. String expression that specifies the name of the file to be copied. Source may include the directory or folder, and drive, of the source file.

Destination

Required. String expression that specifies the target file name. Destination may include the directory or folder, and drive, of the destination file.

Exception type

Error number

Condition

ArgumentException

52

Source or Destination is invalid or not specified.

IOException

55

File is already open.

FileNotFoundException

53

File does not exist.

See the "Error number" column if you are upgrading Visual Basic 6.0 applications that use unstructured error handling. (You can compare the error number against the Number Property (Err Object).) However, when possible, you should consider replacing such error control with Structured Exception Handling Overview for Visual Basic.

If you try to use the FileCopy function on a currently open file, an error occurs.

FileCopy requires full trust to work on the local drive.

This example uses the FileCopy function to copy one file to another. For purposes of this example, assume that SrcFile is a file containing some data.

Visual Basic
Dim SourceFile, DestinationFile As String
SourceFile = "SRCFILE"   ' Define source file name.
DestinationFile = "DESTFILE"   ' Define target file name.
FileCopy(SourceFile, DestinationFile)   ' Copy source to target.

This function is not supported.

Namespace: Microsoft.VisualBasic

Module: FileSystem

Assembly: Visual Basic Runtime Library (in Microsoft.VisualBasic.dll)

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker