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
poj#!/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"; }
|
|---|
| 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 |