leaninperl has asked for the wisdom of the Perl Monks concerning the following question:
When I run this, it puts the new folder on my desktop. I'd like to put it in 'C:\Users\64R92\perl\cmd\', the same place where I'm reading the text file from. I've searched all over the web and can't find how to name that per entry and nothing I've tried has worked. Thanks in advance.#!/usr/local/bin/perl open (MYFILE, 'C:\Users\64R92\perl\cmd\site_list.txt'); while (<MYFILE>) { chomp; $line = $_; $directory = mkdir("$line") || die "Unable to create directory <$!>\n"; print "$_\n"; } close (MYFILE);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Creating folders using strings
by choroba (Cardinal) on Nov 22, 2012 at 15:16 UTC | |
|
Re: Creating folders using strings
by 2teez (Vicar) on Nov 22, 2012 at 15:39 UTC | |
|
Re: Creating folders using strings
by karlgoethebier (Abbot) on Nov 23, 2012 at 08:51 UTC | |
|
Re: Creating folders using strings
by Tommy (Chaplain) on Nov 23, 2012 at 13:12 UTC |