What's the best way to get a string containing a folder name that I can be certain does not exist? That is, if I call DirectoryInfo.Exists
for the given path, it should return false.
EDIT: The reason behind it is I am writing a test for an error checker, the error checker tests whether the path exists, so I wondered aloud on the best way to get a path that doesn't exist.