From: Ubaldo Villaseca Date: 2007-11-14T05:47:50+09:00 Subject: Re: Get file path of script being executed On Nov 13, 2007 1:09 PM, Xavier Noria wrote: > > On Nov 13, 2007, at 6:04 PM, Ubaldo Villaseca wrote: > > > Hi all, > > I have some directories in my project like: > > + communications > > + model > > + database > > + database/sqlite > > + http > > > > Every directory contains scripts, more specifically classes, that are > > called from a main script Portal.rb located in the base directory. How > > could those scripts get in its own code its complete path? I try some > > solutions from Internet but I just get the path to Portal.rb > > Check the __FILE__ variable in each one. > > -- fxn > > > That works great, thanks.