public bool CreateZip(string pathSourceFolder, string pathDestinationFolder, string fileName)
        {
            try {
                ZipFile.CreateFromDirectory(pathSourceFolder, pathDestinationFolder + "/" + fileName);
                return true;