Dev2.FileSystem.Copy C# (CSharp) Method

Copy() public method

public Copy ( Uri sourcePath, Uri destinationPath, bool overWrite, string userName = "", string password = "" ) : void
sourcePath System.Uri
destinationPath System.Uri
overWrite bool
userName string
password string
return void
        public void Copy(Uri sourcePath, Uri destinationPath, bool overWrite, string userName = "", string password = "")
        {
            File.Copy(sourcePath.LocalPath, destinationPath.LocalPath, overWrite);
        }