mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 15:30:27 +00:00
22 lines
545 B
C#
22 lines
545 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace CMLeonOS.Commands.FileSystem
|
||
|
|
{
|
||
|
|
public static class MkdirCommand
|
||
|
|
{
|
||
|
|
public static void ProcessMkdir(CMLeonOS.FileSystem fileSystem, string args)
|
||
|
|
{
|
||
|
|
if (string.IsNullOrEmpty(args))
|
||
|
|
{
|
||
|
|
Console.ForegroundColor = ConsoleColor.Red;
|
||
|
|
Console.WriteLine("Please specify a directory name");
|
||
|
|
Console.ResetColor();
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
fileSystem.MakeDirectory(args);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|