Hi John E Bailey,
Based on my understanding, we do not need to have the users type the path correctly. We can correct the text after we get the text from the UI to make sure the path ends with a ‘\� This is a code snippet:
string path = GetPath();
//Add '\' if the path does not end with '\'
if (path.EndsWith("\\") == false)
path += "\\";
Please feel free to tell me if I misunderstand you.
Aland Li
Please mark the replies as answers if they help and unmark if they don't. This can be beneficial to other community members reading the thread.