A_Metadata
This commit is contained in:
1
Rename/.vscode/appsettings.example.json
vendored
1
Rename/.vscode/appsettings.example.json
vendored
@ -65,7 +65,6 @@
|
||||
"DateGroup": "dd514b88",
|
||||
"DiffPropertyDirectory": "",
|
||||
"FileNameDirectorySeparator": ".Z.",
|
||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||
"MaxImagesInDirectoryForTopLevelFirstPass": 10,
|
||||
"OutputExtension": ".jpg",
|
||||
"Pattern": "[^ABCDEFGHIJKLMNOPQRSTUVWXYZbcdfghjklmnpqrstvwxyz0-9]",
|
||||
|
@ -85,7 +85,7 @@ public class Rename
|
||||
const bool useCeilingAverage = false;
|
||||
const string directorySearchFilter = "*";
|
||||
List<string> distinctDirectories = [];
|
||||
B_Metadata metadata = new(_PropertyConfiguration);
|
||||
A_Metadata metadata = new(_PropertyConfiguration);
|
||||
List<(FileHolder, string, string)> toDoCollection = [];
|
||||
List<(FileHolder, string)> verifiedToDoCollection = [];
|
||||
ProgressBarOptions options = new() { ProgressCharacter = '─', ProgressBarOnBottom = true, DisableBottomPercentage = true };
|
||||
@ -209,7 +209,7 @@ public class Rename
|
||||
return results;
|
||||
}
|
||||
|
||||
private List<Record> GetRecords(B_Metadata metadata, int offset, ProgressBar progressBar, string[] files)
|
||||
private List<Record> GetRecords(A_Metadata metadata, int offset, ProgressBar progressBar, string[] files)
|
||||
{
|
||||
List<Record> results = [];
|
||||
int? id;
|
||||
|
Reference in New Issue
Block a user