forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCwdCommand.cs
More file actions
47 lines (38 loc) · 1.05 KB
/
CwdCommand.cs
File metadata and controls
47 lines (38 loc) · 1.05 KB
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
42
43
44
45
46
47
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
{
get { return "Displays the current working directory."; }
}
public string CommandName
{
get { return "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;
}
}
}