Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: create directory with input

by kcott (Archbishop)
on Dec 04, 2017 at 07:38 UTC ( #1204829=note: print w/replies, xml ) Need Help??


in reply to create directory with input

G'day darkblackblue,

This looks like you're running into a backslashitis nightmare. I think I'd aim for something closer to:

my $path_base = 'C:\Users\darkblack\Desktop\A\.'; ... my $dir = $path_base . $directory_name;

I don't have an MSWin box to test this on; however, the basic concept works fine on my system:

$ pwd /Users/ken/tmp $ ls -al .fred ls: cannot access '.fred': No such file or directory $ perl -e 'my $x = q{/Users/ken/tmp/.}; my $y = q{fred}; mkdir $x . $y +' $ ls -al .fred total 0 drwxr-xr-x 2 ken staff 68 Dec 4 18:27 . drwxr-xr-x 19 ken staff 646 Dec 4 18:27 ..

— Ken

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1204829]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2023-09-28 00:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?