# File lib/fusefs/pathmapper.rb, line 202
        def initialize(options = { })
            @stats = StatsHelper.new()
            @stats.max_space = options[:max_space]
            @stats.max_nodes = options[:max_nodes]
            @root = MNode.new(nil,@stats)
            @use_raw_file_access = options[:use_raw_file_access]
            @allow_write = options[:allow_write]
        end