-
Notifications
You must be signed in to change notification settings - Fork 267
Closed
Labels
state: in workIssues that are currently worked onIssues that are currently worked ontype: enhancementIssues that propose new functionalityIssues that propose new functionality
Description
It appears that the MockFileSystem constructor calls real filesystem API when the currentDirectory parameter is left empty.
The current directory is then set as C:\Users\...\AppData\Local\Temp
I suspect the following code
public MockFileSystem(IDictionary<string, MockFileData> files, string currentDirectory = "")
{
if (string.IsNullOrEmpty(currentDirectory))
{
currentDirectory = IO.Path.GetTempPath();
}
...Metadata
Metadata
Assignees
Labels
state: in workIssues that are currently worked onIssues that are currently worked ontype: enhancementIssues that propose new functionalityIssues that propose new functionality