Also provides the default FileAccess implementation @author Campbell Boucher-Burnet (boucherb@users dot sourceforge.net) @author Fred Toussi (fredt@users dot sourceforge.net) @author Ocke Janssen oj@openoffice.org @version 2.3.0 @since 1.7.2
958959960961962963964965966967968969970971972
} catch (Exception e) {} } static void deleteDatabase(String path) { FileUtil fileUtil = FileUtil.getFileUtil(); fileUtil.delete(path + ".backup"); fileUtil.delete(path + ".properties"); fileUtil.delete(path + ".script"); fileUtil.delete(path + ".data"); fileUtil.delete(path + ".log"); fileUtil.delete(path + ".lck"); fileUtil.delete(path + ".csv"); }
913914915916917918919920921922923924925926
} catch (Exception e) {} } static void deleteDatabase(String path) { FileUtil fileUtil = FileUtil.getDefaultInstance(); fileUtil.delete(path + ".backup"); fileUtil.delete(path + ".properties"); fileUtil.delete(path + ".script"); fileUtil.delete(path + ".data"); fileUtil.delete(path + ".log"); fileUtil.delete(path + ".lck"); fileUtil.delete(path + ".csv"); }
977978979980981982983984985986987988989990991
966967968969970971972973974975976977978979980