I'm missing the newline? I took care of that with chomp. And I looked at the
filenames that were in my directory, and there was a . file.
--- Bart Lateur wrote:
On 13 Jun 2001 07:49:08 EDT, Katherine Richmond wrote:
> if ( ($fileName ne "Icon") && ($fileName ne ".")) {
That ain't right. You're missing the newline in the filename! Since
you're responding to Thomas, I find that surprising, since it was a
large, important part in his post.
And "." doesn't exist on the Mac, I would think. It's not special, if it
does.
if($fileName =~ /\015/) {
There. Plain and simple.
--
Bart.
--- end of quote ---