Answers for "ways to copy files"

C#
-1

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");
Posted by: Guest on October-13-2021

C# Answers by Framework

Browse Popular Code Answers by Language