Add character replacement

This commit is contained in:
Michael Bucari-Tovo 2022-06-21 18:34:47 -06:00
parent b7fd87b09c
commit 1470aefd42
19 changed files with 654 additions and 115 deletions

View file

@ -284,6 +284,13 @@ namespace LibationFileManager
#region templates: custom file naming
[Description("Edit how illegal filename characters are replaced")]
public ReplacementCharacters ReplacementCharacters
{
get => persistentDictionary.GetNonString<ReplacementCharacters>(nameof(ReplacementCharacters));
set => persistentDictionary.SetNonString(nameof(ReplacementCharacters), value);
}
[Description("How to format the folders in which files will be saved")]
public string FolderTemplate
{