http://www.perlmonks.org?node_id=1008046


in reply to How can one create a folder B in D drive and save results in a text file inside B using perl script?

Perhaps the following will assist:

#!/usr/bin/perl use warnings; use strict; my $a = 9; my $b = 5; my $c = $a * $b; my $dir = 'D:/B'; my $output = 'Result_File.txt'; ## Create the folder B in D drive & Save results as Result_File.txt # within B folder: mkdir $dir or die $!; open my $fh, '>', $dir . '/' . $output or die "Cannot open file '$outp +ut'.\n"; # Line 10 print $fh "\n WELCOME! Product of 9 & 5 = $c\n\n"; close $fh;

Hope this helps!

  • Comment on Re: How can one create a folder B in D drive and save results in a text file inside B using perl script?
  • Select or Download Code

Replies are listed 'Best First'.
Re^2: How can one create a folder B in D drive and save results in a text file inside B using perl script?
by supriyoch_2008 (Monk) on Dec 10, 2012 at 07:04 UTC

    Hi Kenosis,

    Thanks a lot. Your code has worked nicely and solved my problem.

    With Regards