Ejemplo n.º 1
0
        private async Task <bool> DeleteZipFile(string zipFilePath)
        {
            bool somethingWrong = false;

            try
            {
                await IsolatedStorageHelper.DeleteFileAsync(zipFilePath);
            }
            catch (Exception ex)
            {
                somethingWrong = true;
                throw;
            }
            return(somethingWrong);
        }