-
Notifications
You must be signed in to change notification settings - Fork 366
Expand file tree
/
Copy pathCwdCommand.cs
More file actions
41 lines (32 loc) · 986 Bytes
/
CwdCommand.cs
File metadata and controls
41 lines (32 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using ScriptCs.Contracts;
namespace ScriptCs.ReplCommands
{
public class CwdCommand : IReplCommand
{
private readonly IConsole _console;
public CwdCommand(IConsole console)
{
Guard.AgainstNullArgument("console", console);
_console = console;
}
public string Description => "Displays the current working directory.";
public string CommandName => "cwd";
public object Execute(IRepl repl, object[] args)
{
Guard.AgainstNullArgument("repl", repl);
var dir = repl.FileSystem.CurrentDirectory;
var originalColor = _console.ForegroundColor;
_console.ForegroundColor = ConsoleColor.Yellow;
try
{
_console.WriteLine(dir);
}
finally
{
_console.ForegroundColor = originalColor;
}
return null;
}
}
}