Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unique file generation API for a given file name #27

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ close KEYWORD2
seek KEYWORD2
position KEYWORD2
size KEYWORD2

getUniqueFileName KEYWORD2
#######################################
# Constants (LITERAL1)
#######################################
Expand Down
10 changes: 10 additions & 0 deletions src/SD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,16 @@ boolean SDClass::remove(const char *filepath) {
return walkPath(filepath, root, callback_remove);
}

String SDClass::getUniqueFileName(String expectedName, String expectedExtention)
{
long counter = 0;
while (SD.exists(expectedName + String(counter) + "." + expectedExtention))
{
counter += 1;
}
return expectedName + String(counter) + "." + expectedExtention;
}


// allows you to recurse into a directory
File File::openNextFile(uint8_t mode) {
Expand Down
3 changes: 3 additions & 0 deletions src/SD.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ class SDClass {
boolean rmdir(const char *filepath);
boolean rmdir(const String &filepath) { return rmdir(filepath.c_str()); }

//returns a unique name for the file with expectedfilename an extention.
String getUniqueFileName(String expectedName, String expectedExtention);

private:

// This is used to determine the mode used to open a file
Expand Down