Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8413655
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T00:57:34+00:00 2026-06-10T00:57:34+00:00

I have a Perl script which takes a few arguments. It is executed like

  • 0

I have a Perl script which takes a few arguments. It is executed like this:

exec myscript.pl --file=/path/to/input/file --logfile=/path/to/logfile/logfile.log

I have the following line in the script:

open LOGFILE, ">>$logFilePath" or die "Can't open '$logFilePath': $!\n";

Where $logfilePath is taken from the command line.
If there is a path, /path/to/logfile/, but no logfile.log, it just creates it (which is the desired action). However, it fails to start if there is no such path. How can I make the script create the path for the logfile, if it does not exist prior to running the script?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T00:57:35+00:00Added an answer on June 10, 2026 at 12:57 am

    Suppose you have the path to the logfile (which may or may not include the filename: logfile.log) in the variable $full_path. Then, you can create the respective directory tree if needed:

    use File::Basename qw( fileparse );
    use File::Path qw( make_path );
    use File::Spec;
    
    my ( $logfile, $directories ) = fileparse $full_path;
    if ( !$logfile ) {
        $logfile = 'logfile.log';
        $full_path = File::Spec->catfile( $full_path, $logfile );
    }
    
    if ( !-d $directories ) {
        make_path $directories or die "Failed to create path: $directories";
    }
    

    Now, $full_path will contain the full path to the logfile.log file. The directory tree in the path will have also been created.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Perl script which takes both command line arguments and STDIN #!/usr/bin/perl
I have a Perl script which nests foreach loops as seen below. It takes
I have a perl script, which takes a query string parameter, connects to a
I have a Perl script which will allow for a file to be uploaded
I have a perl script URL which gives me a ZIP file, it processes
I have a perl script (or any executable) E which will take a file
I have a Perl script which forks a number of sub-processes. I'd like to
I have a Perl script (standalone program) which contains some subs I'd like to
Perl is continuing to surprise me. I have a code which takes an input
I have Perl script which appends a new line to the existing file every

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.