Hello,
I discovered an interesting thing. I use FTP to get a configuration file that contains the version information for an exe stored in the FTP. It reads the contents of the configuration file fine. However, if you were to change the configuration file contents and read the contents of the configuration file, the old contents is still read.
For example:
[Application]
VersionMajor=2
VersionMinor=0
VersionRelease=110
VersionStr=2.0.110
Now change the VersionRelease and VersionStr and save it.
[Application]
VersionMajor=2
VersionMinor=0
VersionRelease=120
VersionStr=2.0.120
When you read the file again it still reads this.
[Application]
VersionMajor=2
VersionMinor=0
VersionRelease=110
VersionStr=2.0.110
I cannot figure out why. Does this have to do with cache or something else. All I know is that you have to restart the application to read the changes you made to the configuration file.