-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBytesProgressDisplay.cs
53 lines (47 loc) · 1.4 KB
/
BytesProgressDisplay.cs
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
48
49
50
51
52
53
using System;
using System.IO;
using System.Security;
namespace PneumaticTube
{
internal class BytesProgressDisplay : IProgress<long>
{
private readonly bool _consoleCanReportProgress;
private readonly long _fileSize;
public BytesProgressDisplay(long fileSize)
{
_fileSize = fileSize;
_consoleCanReportProgress = true;
try
{
// This will throw an exception if we're running in ISE
var top = Console.CursorTop;
}
catch(SecurityException)
{
// No permission to mess with the console,
_consoleCanReportProgress = false;
}
catch(IOException)
{
// This console doesn't allow position setting
_consoleCanReportProgress = false;
}
}
public void Report(long value)
{
if(_consoleCanReportProgress)
{
Console.SetCursorPosition(0, Console.CursorTop);
Console.Write($"{value} of {_fileSize} uploaded.");
}
if(value >= _fileSize)
{
if(!_consoleCanReportProgress)
{
Console.Write($"{value} of {_fileSize} uploaded.");
}
Console.Write("\n");
}
}
}
}