Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^3: using basename on a list of filesnames

by 1nickt (Canon)
on Nov 13, 2019 at 03:51 UTC ( [id://11108608]=note: print w/replies, xml ) Need Help??


in reply to Re^2: using basename on a list of filesnames
in thread using basename on a list of filesnames

Did you add a debug print statement inside the loop to see what you are passing to basename() in $file? It really works:

$ perl -MFile::Basename -wE 'say basename("foo.psd",".psd")' foo
... but passing an undefined value does not:
$ perl -MFile::Basename -wE 'say basename(undef,".psd")' Use of uninitialized value $_[0] in substitution (s///) at /Users/1nic +kt/perl5/perlbrew/perls/perl-5.30.0/lib/5.30.0/File/Basename.pm line +341. fileparse(): need a valid pathname at -e line 1.


The way forward always starts with a minimal test.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-25 15:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found