public void delete(String... paths) {
   for (String path : paths) {
     mfs.remove(path);
   }
 }
 public byte[] read(String path) {
   return mfs.read(path);
 }
 public KieFileSystem write(String path, byte[] content) {
   mfs.write(path, content, true);
   return this;
 }