(LPSZ lpsz)
| 2006 | } |
| 2007 | |
| 2008 | public static boolean remove(LPSZ lpsz) { |
| 2009 | if (Files.remove(lpsz)) { |
| 2010 | return true; |
| 2011 | } |
| 2012 | |
| 2013 | // could not remove file, logging error |
| 2014 | final FilesFacade ff = FilesFacadeImpl.INSTANCE; |
| 2015 | LOG.error().$("Could not remove file [path=").$safe(lpsz).$(", errno=").$(ff.errno()).I$(); |
| 2016 | return false; |
| 2017 | } |
| 2018 | |
| 2019 | public static void removeTestPath(CharSequence root) { |
| 2020 | try (Path path = new Path()) { |
no test coverage detected