Simple awk command:
awk 'NR%2==0{ print > ("File "++i" ++i) }' RS='"' fileinfile
RS defines " as record separator and NR is the record number. If the record number was modulo of 2 (because we have another first " for records), then print the current record $0 into a File #.