Fetch longname when a file exists
This commit is contained in:
parent
9aff5cb095
commit
de4f882a22
@ -628,11 +628,17 @@ void CardReader::openFileWrite(char * const path) {
|
|||||||
|
|
||||||
//
|
//
|
||||||
// Check if a file exists by absolute or workDir-relative 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) {
|
bool CardReader::fileExists(const char * const path) {
|
||||||
if (!isMounted()) return false;
|
if (!isMounted()) return false;
|
||||||
SdFile *diveDir = nullptr;
|
SdFile *diveDir = nullptr;
|
||||||
const char * const fname = diveToFile(false, diveDir, path);
|
const char * const fname = diveToFile(false, diveDir, path);
|
||||||
|
if (fname) {
|
||||||
|
diveDir->rewind();
|
||||||
|
selectByName(*diveDir, fname);
|
||||||
|
diveDir->close();
|
||||||
|
}
|
||||||
return fname != nullptr;
|
return fname != nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user