How to Arduino Yun support Creative Live! VISTA VF0470 webcam?

Hi Kaul,

If you would like to add time stamp to your picture once you saving it, maybe this link able to help you :

/* A simple function to generate unique timestamp based filenames */

String uniqueFileName(String ext){
  String filename = "";
  p.runShellCommand("date +%s");
  while(p.running()); 

  while (p.available()>0) {
    char c = p.read();
    filename += c;
  } 

  filename.trim();
  filename += "." + ext;

  return filename;
}

Thanks!