Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

Copy file

using System;
using System.IO;

var source = @"C:UsersJanoDocumentswords.txt";
var destination = @"C:UsersJanoDocumentswords_bck.txt";

File.Copy(source, destination);
Console.WriteLine("File copied");
Source by zetcode.com #
 
PREVIOUS NEXT
Tagged: #Copy #file
ADD COMMENT
Topic
Name
2+6 =