bool SD_exists(String path){
bool exists = false;
sd::File test = SD.open(path);
if(test){
test.close();
exists = true;
}
return exists;
}
But in the same sketches I do use remove to delete the files
SD.remove((char *)path.c_str());
I guess I'll hook up mu SD and see what will happen