Finding Episerver VersionedFiles On Disk

When using episerver versioning file system you end up with guid names for files. A quick way to find the guidname for a file is to query tblItem for the pkid

select pkID from tblItem where Name like ‘filename’

and then executing RelationListFrom on it

exec RelationListFrom @FromId=N’pkID’,@SchemaId=0