I am trying to find the size of a file using the -s operator. I looks like this:

my $filesz = -s $filename

I tried lots of various way, but it can not get this size.
However, if I give static content instead of filename, it works fine

For example:

$filesz = -s "/tmp/abc.txt"

This works fine.

I tried adding " in the filename, it didn't work. I removed \n from filename using chomp, but the problem remains the same. What's wrong here?

link|improve this question

80% accept rate
1  
-s $filename if -e $filename – Pedro Silva Aug 24 '10 at 19:16
Did you ever print out the contents of $filename to see if it's what you think it is? – Ether Aug 24 '10 at 19:27
@Ether: I did .. its just that it was \n which was not easily visible :) – Jack Aug 25 '10 at 7:40
feedback

2 Answers

up vote 7 down vote accepted

-s $filename works just fine; the only conclusion is that there's no file with the name contained in $filename. Take a very close look at the contents of $filename, and make sure that your working directory is what you think it is.

link|improve this answer
There were two issues 1. There was \n which was not getting chomped properly. It was not visible with print 2. I was adding " character around path which was not working with -s. – Jack Aug 25 '10 at 7:38
@Jack Sounds like your problem was actually with \r, not \n (and your problem would have been solved by the :crlf I/O layer, which translates between \r\n and \n). Anyway, glad you got it sorted out. – hobbs Aug 25 '10 at 8:23
feedback

As hobbs says, the most likely explanation is that $filename doesn't contain what you think it does.

Based on previous experience, I'd go further than that and hesitate a guess that $filename has a newline character at the end of it. Are you reading the value in $filename from a file or from user input?

link|improve this answer
yes, that was one of the issue. I was getting filename from readdir loop. – Jack Aug 25 '10 at 7:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.