started adding function for copying files. Needs a little implementation and tinkering to work with Saviour.
This commit is contained in:
parent
04d5618e62
commit
1d7777dbd7
1 changed files with 8 additions and 0 deletions
|
@ -16,5 +16,13 @@ namespace Saviour_Backup_System
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void copyFiles(string startDirectory, string endDirectory)
|
||||||
|
{
|
||||||
|
CopyFiles.CopyFiles Temp = new CopyFiles.CopyFiles(startDirectory, endDirectory);
|
||||||
|
|
||||||
|
transferWindow copyDiag = new transferWindow();
|
||||||
|
copyDiag.
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue