in reply to Re^4: Need help with inserting images to excel from db
in thread Need help with inserting images to excel from db

Try this test script in same folder as your failing script and check that test1.txt is created.
#!/usr/bin/perl use strict; use warnings; my $dir = './images'; if (-d $dir){ open OUT,'>', $dir.'/test1.txt' or die "error open OUT $!"; print OUT "TEST"; close OUT or die "error close OUT $!"; } else { print "$dir folder does not exist"; }
poj

Replies are listed 'Best First'.
Re^6: Need help with inserting images to excel from db
by terrykhatri (Acolyte) on Jul 01, 2014 at 09:09 UTC
    Hi Poj It does work !! it created a file name tast1.txt with TEST printed inside. Thanks Terry