Hi Everyone,

I'm working on a local system, and my one file is stored on a server.

Let's say, On Server, we have set an environment variable (setx FILE //173.15.3.40/myUser/file.txt).
That variable is used in a file(serverFile.xml) stored in server itself.

serverFile.xml
----------------------------------------------
<property index="0" name="File Name" value="%FILE%"/>
----------------------------------------------
Now, I'm accessing this file(serverFile.xml) from a local server, and I can access it, but my local system don't know what is FILE means. I know about QByteArray qgetenv ( const char * varName ), which gives you path of that environment variable, but how I can do the same on Server from Local system using QT Programming?

I'm using QNetworkRequest, QNetworkAccessManager to communicate with the server. (REST API)

Simply how to find what is path set for FILE from our local system?

Any concept or hacks will be appreciable.