Fetch longname when a file exists

This commit is contained in:
Scott Lahteine 2020-09-28 16:36:22 -05:00
parent 9aff5cb095
commit de4f882a22

View File

@ -628,11 +628,17 @@ void CardReader::openFileWrite(char * const path) {
//
// Check if a file exists by absolute or workDir-relative path
// If the file exists, the long name can also be fetched.
//
bool CardReader::fileExists(const char * const path) {
if (!isMounted()) return false;
SdFile *diveDir = nullptr;
const char * const fname = diveToFile(false, diveDir, path);
if (fname) {
diveDir->rewind();
selectByName(*diveDir, fname);
diveDir->close();
}
return fname != nullptr;
}