fix Cache
[nikiroo-utils.git] / src / be / nikiroo / utils / Cache.java
index dbe2020188ec44ae2dfd673529f49a8e6abdf462..ce33592ed3a4419cee1a6553908cae8621bfefd8 100644 (file)
@@ -319,8 +319,9 @@ public class Cache {
         *             in case of I/O error
         */
        private void save(InputStream in, File cached) throws IOException {
-               clean(true, dir, 10);
+               // We delete AFTER so not to remove the subdir we will use...
                IOUtils.write(in, cached);
+               clean(true, dir, 10);
        }
 
        /**