public void CopyFile(string source, string target)
        {
            string t = target.Replace(Target, "");

            Zip.AddFile(source, t);
        }