# File lib/selenium/rspec/reporting/file_path_strategy.rb, line 66 66: def file_path(relative_file_path) 67: the_file_path = base_report_dir + "/" + relative_file_path 68: parent_dir = File.dirname(the_file_path) 69: FileUtils.mkdir_p(parent_dir) unless File.directory?(parent_dir) 70: the_file_path 71: end