MCPcopy Index your code
hub / github.com/benfry/processing4 / nextArchiveFile

Method nextArchiveFile

app/src/processing/app/ui/Theme.java:153–161  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

151
152
153 static private File nextArchiveFile() {
154 int index = 0;
155 File backupFile;
156 do {
157 index++;
158 backupFile = new File(Base.getSketchbookFolder(), String.format("theme.%03d", index));
159 } while (backupFile.exists());
160 return backupFile;
161 }
162
163
164 static public void print() {

Callers 1

archiveCurrentMethod · 0.95

Calls 2

getSketchbookFolderMethod · 0.95
formatMethod · 0.65

Tested by

no test coverage detected