Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: create directory with input

by CountZero (Bishop)
on Dec 04, 2017 at 11:04 UTC ( [id://1204835]=note: print w/replies, xml ) Need Help??


in reply to create directory with input

File::Spec provides a convenient interface to constructing directory names and filenames and it works in many operating systems:
$path = File::Spec->catfile( @directories, $filename );

In the present case it would go like this:

use Modern::Perl qw/2017/; use File::Spec; my $directory_name = 'testdir'; my $path = File::Spec->catfile( qw/C: Users darkblack Desktop A/, $directory_na +me ); say $path;
Output (in Windows): C:\Users\darkblack\Desktop\A\testdir

But running under Unix it will return C:/Users/darkblack/Desktop/A/testdir

File::Spec::Functions provides an even easier functional interface.

CountZero

A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

My blog: Imperial Deltronics

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (7)
As of 2024-04-19 11:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found