method rmdir rp =
    match rp with Relpath(rel) ->
      let fqp = String.concat "/" [root_dir;rel] in
        Directfifowatcher.del_dir_watch fqp;
        try
          Unix.rmdir fqp
        with _ ->
          logprint "Hm. %s disappeared or not empty. Looks like slice %s shot itself in the foot\n" fqp (this#get_slice_name ())