Hi PerlMonks,
I am interested to create a folder B in D drive of computer and
then save results in a text file (Result_File.txt) inside B folder
using perl. For this I have written the following script p5.pl but
the cmd has shown an error. I am at my wit's end to find a solution. I
searched in perldoc but couldn't find the code applicable in my case.
I can't make out what the technical term perlIO layer really means
in the error message in cmd. May I request PerlMonks to provide
suggestions in this matter?
Here goes the script p5.pl:
#!/usr/bin/perl
use warnings;
use strict;
my $a=9; my $b=5; my $c=$a*$b;
## Create the folder B in D drive & Save results as Result_File.txt
# within B folder:
my $output="Result_File.txt";
open (my $fh,">D://B/",$output) or die"Cannot open file'$output'.\n";
+# Line 10
print $fh "\n WELCOME! Product of 9 & 5= $c\n\n";
close $output;
exit;
Here goes the error message in cmd screen:
C:\Users\x\Desktop>p5.pl
Unknown PerlIO layer "D" at C:\Users\x\Desktop\p5.pl line 10.
Cannot open file'Result_File.txt'.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|