# File lib/directory_manager.rb, line 5
      def initialize(file_name, path= nil)
        path = path ? path : Dir.pwd
        @location= File.join(path, file_name)
      end