I want to upload a file every hour on the hour, a "now playing" list
The file will always have the same name so that it overwrites the previous one.
Does anyone know an ftp client that possesses this ability, or some other methodology?
for windows xp
thanx
Automated FTP upload help needed for radio playlists
-
- KVRist
- 347 posts since 3 Aug, 2004 from Galway,Ireland
-
- KVRAF
- 8389 posts since 11 Apr, 2003 from back on the hillside again - but now with a garden!
You could probably do it with a batch file and a scheduler (even the windows one)
batch file:
MyFilename.txt [you need to <fill these in> (and remove the brackets!)]
and in the scheduler, just have it call MyFile.bat
it may need the odd tweak in the ftp file so that it works correctly for your ftp server, but that would do it!
HTH
DSP
batch file:
Code: Select all
ftp -s:Path\MyFilename.txt
exitCode: Select all
open <mysite.com>
user <login> <password>
cd <remote directory>
lcd <local directory>
binary
put <filename>
disconnect
byeit may need the odd tweak in the ftp file so that it works correctly for your ftp server, but that would do it!
HTH
DSP
-
- KVRist
- Topic Starter
- 347 posts since 3 Aug, 2004 from Galway,Ireland

