AWBPackager.Program.Copy C# (CSharp) Method

Copy() static private method

static private Copy ( string fromPath, string toPath, string filename ) : void
fromPath string
toPath string
filename string
return void
        static void Copy(string fromPath, string toPath, string filename)
        {
            File.Copy(Path.Combine(fromPath, filename), Path.Combine(toPath, filename), true);
        }