Files
CMLeonOS/shell/Commands/FileSystem/CdCommand.cs

11 lines
237 B
C#
Raw Normal View History

2026-02-04 20:13:21 +08:00
namespace CMLeonOS.Commands.FileSystem
{
public static class CdCommand
{
public static void ProcessCd(CMLeonOS.FileSystem fileSystem, string args)
{
fileSystem.ChangeDirectory(args);
}
}
}