166167168169170171172173174175
File file = new File(getFileName(imgKey)); if (file.exists()) { if (!file.delete()) { throw new CewolfException("Could not delete file " + file.getAbsolutePath()); } } return imgKey; }
164165166167168169170171172173