# File lib/fuse/rfusefs-fuse.rb, line 392
      def unlink(ctx,path)
        return wrap_context(ctx,__method__,path) if ctx

        unless @root.can_delete?(path)
          raise Errno::EACCES.new(path)
        end

        @adj_size = @adj_size - size(path)

        @created_files.delete(path)
        @root.delete(path)
      end