I created csv file with this perl module Text::CSV_XS on windows:

Below a snippet of my code :

use Text::CSV_XS;

my @a =('ID','VALUE'); 


open my $OUTPUT,'>',"file.csv" or die "Can't able to open file.csv\n";

my $csv = Text::CSV_XS->new ({ binary => 1, eol => $/ });



$csv->print($OUTPUT,\@a);

this code generate a file.csv but when I try to open the file.csv with xls the xls write that this file is SYLK and can't know it could someone help why this csv can't open with xls?

link|improve this question

62% accept rate
4  
Please take a look at your acceptance rate. it is so poor. in future no one interested to answer your question. – Arif Nov 15 '11 at 18:53
SYLK = SYmbolic LinK? – TLP Nov 15 '11 at 18:56
1  
does file.csv look like a CSV when you open it in notepad? – Joel Berger Nov 15 '11 at 19:00
feedback

1 Answer

up vote 11 down vote accepted

This problem occurs when you open a text file or CSV file and the first two characters of the file are the uppercase letters "I" and "D"

"SYLK: File format is not valid" error message when you open file

link|improve this answer
are you kidding me!! tell me thats an april fools! – Joel Berger Nov 15 '11 at 19:02
@JoelBerger :) Check the link.. Confirmed by Microsoft – Aki Nov 15 '11 at 19:04
Incredible! ...and not very slick :-) – JRFerguson Nov 15 '11 at 19:06
I did, I just can't believe that a real operating system could be that naive. Yikes, that has to be one of the worst gotchas ever! – Joel Berger Nov 15 '11 at 19:07
4  
@Joel Berger: It's a Excel, not an OS issue. And fwiw, while newer versions than '03 complain they at least load it properly. – Oesor Nov 15 '11 at 19:32
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.