mirror of
https://github.com/Alee14/shiftos-challenge.git
synced 2025-01-22 18:12:15 +00:00
Filesystem can now create directories
This commit is contained in:
parent
6995abe190
commit
b71f731e25
1 changed files with 4 additions and 1 deletions
|
@ -125,6 +125,9 @@ namespace ShiftOS
|
|||
WriteAllText(InPath, string.Join(Environment.NewLine, InLines));
|
||||
}
|
||||
|
||||
|
||||
public void CreateDirectory(string InPath)
|
||||
{
|
||||
Directory.CreateDirectory(MapToEnvironmentPath(InPath));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue