Hello,
is there any way to download files directly from SCADA? The function netGet() downloads the data, but I need to download the file, e.g. pdf file, and save it somewhere on local computer.
Best regards,
Nedžad
Download files from SCADA
- mkoller
- Posts:741
- Joined: Fri Sep 17, 2010 9:03 am
Re: Download files from SCADA
You can tell netGet() to download the file to a specific file path using the options mapping argument.
qthelp://wincc_oa/doc/ControlE_R/netGet.htm
e.g.
netGet("http://localhost/pictures/console.png", m, makeMapping("target","/tmp/console.png"));
netGet("http://localhost/pictures/console.png", m, makeMapping("target", "/tmp"));
qthelp://wincc_oa/doc/ControlE_R/netGet.htm
e.g.
netGet("http://localhost/pictures/console.png", m, makeMapping("target","/tmp/console.png"));
netGet("http://localhost/pictures/console.png", m, makeMapping("target", "/tmp"));