# File lib/fakefs/pathname.rb, line 1000
      def rmtree
        # The name "rmtree" is borrowed from File::Path of Perl.
        # File::Path provides "mkpath" and "rmtree".
        require 'fileutils'
        FileUtils.rm_r(@path)
        nil
      end