Get member fRealName of TFile

Hi,

I want to access the real physical name of a file outside root. I have all these files as TFile within root. I see this name is stored in the member fRealName, however there is no function getRealName or something to access the filename?

Thanks

Hi,

Simply try GetName(), as in TFile ctor: fRealName = GetName();
Cheers, Bertrand.

Oh this is an inherited function, sorry :blush: . Thanks !