in reply to RE: RE: Re: How do I get the name of the file from which the class was loaded?
in thread How do I get the name of the file from which the class was loaded?
... yes, after a tweak or two ;-)> use vars qw(_Filename); > _Filename = __FILE__;<br>
Rudifuse strict; use vars qw( $_Filename ); $_Filename = __FILE__; print $_Filename;
|
|---|