Share via


Copy Method (String, String, Boolean)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Copies an existing file to a new file. Overwriting a file of the same name is allowed.

Namespace:  System.IO
Assembly:  System.IO (in System.IO.dll)

Syntax

'Declaration
Public Shared Sub Copy ( _
    sourceFileName As String, _
    destFileName As String, _
    overwrite As Boolean _
)
public static void Copy(
    string sourceFileName,
    string destFileName,
    bool overwrite
)
public:
static void Copy(
    String^ sourceFileName, 
    String^ destFileName, 
    bool overwrite
)
static member Copy : 
        sourceFileName:string * 
        destFileName:string * 
        overwrite:bool -> unit 
public static function Copy(
    sourceFileName : String, 
    destFileName : String, 
    overwrite : boolean
)

Parameters

Remarks

The sourceFileName and destFileName parameters can specify relative or absolute path information. Relative path information is interpreted as relative to the current working directory.

.NET Framework Security

See Also

Reference

File Class

Copy Overload

System.IO Namespace