Can't you just write a simple batch script that copies and overwrites the file at the desired interval? This way you don't need to modify your weather application, nor yawcam, and both will be happy.
Having you write this small script, will get you the job done very quickly and gives you the control of the interval. Waiting for a programmer to modify their application to suit your needs can take a very long time. I'm not saying this will not be implemented though, this seems like a small task for a programmer since all he has to do is set a new variable, and add the option to select the folder. But this would still take lots of time, and in the mean time, your script would be the perfect workaround.
A batch script can be easily done.
1) Create a new text document and rename it to script.bat or (anything).bat
2) Open the .bat file with notepad
3) enter the following code :
- Code: Select all
@echo off
:Start
echo Copying Files...
xcopy /C /Q /Y "C:\program files\weatherapp\varsfolder\" "C:\program files\Yawcam\extravars\"
if ERRORLEVEL 0 goto PAUSE
echo Error Copying Files...
pause
goto Start
:pause
Echo Pausing 30 seconds...
ping -n 1 -w 30000 1.1.1.1 >>null
goto start
4) save the file and run it.
z3r0c00l12