AWBPackager.Program.CopyAndCreateDirectory C# (CSharp) Method

CopyAndCreateDirectory() static private method

static private CopyAndCreateDirectory ( string fromPath, string toPath, string filename ) : void
fromPath string
toPath string
filename string
return void
        static void CopyAndCreateDirectory(string fromPath, string toPath, string filename)
        {
            Directory.CreateDirectory(toPath);
            Copy(fromPath, toPath, filename);
        }