# File fs.rb, line 32
    def initialize aPath, aCreateIt = false
      @path = aPath.to_s.squeeze('/')
      create! if aCreateIt && !exist?
    end