From be888c09aba58220a541a05777f4d4a66526d8fd Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Fri, 27 May 2011 00:25:40 +0100 Subject: [PATCH] controller: clear file attributes before recurively removing tmp folder --- SparkleShare/SparkleController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/SparkleShare/SparkleController.cs b/SparkleShare/SparkleController.cs index ebeb6671..4e11e1c5 100644 --- a/SparkleShare/SparkleController.cs +++ b/SparkleShare/SparkleController.cs @@ -93,6 +93,7 @@ namespace SparkleShare { SparklePath = SparklePaths.SparklePath; // Remove temporary file + SparkleHelpers.ClearAttributes (SparklePaths.SparkleTmpPath); if (Directory.Exists (SparklePaths.SparkleTmpPath)) Directory.Delete (SparklePaths.SparkleTmpPath, true);