private static void clear(LFCServer lfcServer, String path) {
   FileDesc fd;
   try {
     System.out.println("clear: path=" + path);
     fd = lfcServer.fetchFileDesc(path);
     lfcServer.deleteFile(fd.getGuid(), path);
   } catch (LFCException e1) {
   }
 }