
This CGI does not take any parameter. It generates a list of files available in the sub-directories of the DCIM/
A text file, listing the photos will be created after calling this CGI. This text file does not contain the HTML codes. This file can be accessed at http://<ip>/photolist.txt,
http://<ip>/cgi-bin/photolist
- ip: Flucard® IP address
After connecting the PC to Flucard® (in Wi-Fi setting), following DOS commands (in a batch file) get all photos from the Flucard®:
1) Get photolist HTML page
curl -O http://192.168.1.1/cgi-bin/photolist
2) Get photolist plain text
curl -O http://192.168.1.1/photolist.txt
3) Get each photo in the list
for /F %%i in (photolist.txt) do curl -O %%i







