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

13 lines
255 B
C#
Raw Normal View History

2026-02-04 20:13:21 +08:00
using System;
namespace CMLeonOS.Commands.FileSystem
{
public static class PwdCommand
{
public static void ProcessPwd(CMLeonOS.FileSystem fileSystem)
{
Console.WriteLine(fileSystem.CurrentDirectory);
}
}
}