Say I have a variable, $obscure for example, and the value of $obscure is “c:\windows\some\obscure\path”.

Now, let’s say that I read a file that contains locations that I need to look to and do stuff. If one of the locations that I pull from the file is the word “obscure” and I set that to a variable named $filelocation, I now have a variable ($filelocation) with a value that is the name of another variable ($obscure). Is there any way that I can access the value of $obscure by using the variable $filelocation?

I hope this makes sense.