in reply to Re: XMLin is not identifying the input file name passed to it
in thread XMLin is not identifying the input file name passed to it

thanks a lot for solving this Issue.

added the working code here.

#!/usr/bin/perl my $file = shift; use XML::Simple; die "Can't find file \"$file\"" unless -f $file; $xml = new XML::Simple; print "Input file :$file:\n"; # read XML file $data = $xml->XMLin("/full_path_name/$file");