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

I created a folder images but its giving me the same error and the folder is empty. Thanks for your quick help.
  • Comment on Re^4: Need help with inserting images to excel from db

Replies are listed 'Best First'.
Re^5: Need help with inserting images to excel from db
by poj (Abbot) on Jun 29, 2014 at 13:37 UTC
    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
      Hi Poj It does work !! it created a file name tast1.txt with TEST printed inside. Thanks Terry