# File lib/visage-app/config/file.rb, line 43
      def initialize(filename, opts={})
        if not ::File.exists?(filename)
          path = @@config_directories.first.join(filename)
          FileUtils.touch(path)
        end
        @file = ::File.open(filename, 'r+')
      end