# File lib/vcr/cassette/persisters/file_system.rb, line 23 def [](file_name) path = absolute_path_to_file(file_name) return nil unless File.exist?(path) File.binread(path) end