Filesystem can now create directories

This commit is contained in:
Alkaline Thunder 2018-12-28 01:19:17 -05:00
parent 6995abe190
commit b71f731e25

View file

@ -125,6 +125,9 @@ namespace ShiftOS
WriteAllText(InPath, string.Join(Environment.NewLine, InLines)); WriteAllText(InPath, string.Join(Environment.NewLine, InLines));
} }
public void CreateDirectory(string InPath)
{
Directory.CreateDirectory(MapToEnvironmentPath(InPath));
}
} }
} }