in reply to Reading XLS file using Perl
"Sorry update: I want to copy a .xls to another .xls file i tried"
If you simply want to create a copy of file you don't need to read and parse it.
#!/usr/bin/perl use strict; use warnings; use File::Copy; copy("source.xls","target.xls") or die "Copy failed: $!"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Reading XLS file using Perl
by Anonymous Monk on Feb 12, 2014 at 17:03 UTC | |
by marto (Cardinal) on Feb 13, 2014 at 14:47 UTC |