Files
CMLeonOS/shell/Commands/FileSystem/CdCommand.cs
2026-02-04 20:13:21 +08:00

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);
}
}
}