у меня
f = File.new(contacts_file_path, "wb")
f.write params[:uploaded_file].read
f.close
хочу
begin
f = File.new(contacts_file_path, "wb")
f.write params[:uploaded_file].read
rescue
#error
ensure
if f.open? then f.close end
end
Но что? не является функцией, и я не могу найти документацию API. Есть идеи?