mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-04-24 11:34:00 +00:00
11 lines
237 B
C#
11 lines
237 B
C#
|
|
namespace CMLeonOS.Commands.FileSystem
|
||
|
|
{
|
||
|
|
public static class CdCommand
|
||
|
|
{
|
||
|
|
public static void ProcessCd(CMLeonOS.FileSystem fileSystem, string args)
|
||
|
|
{
|
||
|
|
fileSystem.ChangeDirectory(args);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|