-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExtensions.cs
120 lines (101 loc) · 3.9 KB
/
Extensions.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
//
// Copyright (c) Roland Pihlakas 2019 - 2022
//
// Roland Pihlakas licenses this file to you under the GNU Lesser General Public License, ver 2.1.
// See the LICENSE file for more information.
//
#define ASYNC
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Nito.AsyncEx;
namespace AsyncToSyncCodeRoundtripSynchroniserMonitor
{
public static class Extensions
{
public static List<T> GetReverse<T>(this List<T> list)
{
var newList = new List<T>(list);
newList.Reverse();
return newList;
}
public static List<Tuple<TValue, TKey>> Inverse<TKey, TValue>(this List<Tuple<TKey, TValue>> source)
{
var result = new List<Tuple<TValue, TKey>>();
foreach (var entry in source)
{
result.Add(new Tuple<TValue, TKey>(entry.Item2, entry.Item1));
}
return result;
}
public static Dictionary<TValue, TKey> Inverse<TKey, TValue>(this IDictionary<TKey, TValue> source)
{
var result = new Dictionary<TValue, TKey>();
foreach (var entry in source)
{
if (!result.ContainsKey(entry.Value))
result.Add(entry.Value, entry.Key);
}
return result;
}
public static long? CheckDiskSpace(string path)
{
long? freeBytes = null;
try //NB! on some drives (for example, RAM drives, GetDiskFreeSpaceEx does not work
{
//NB! DriveInfo works on paths well in Linux //TODO: what about Mac?
var drive = new DriveInfo(path);
freeBytes = drive.AvailableFreeSpace;
}
catch (ArgumentException)
{
if (ConfigParser.IsWindows)
{
long freeBytesOut;
if (WindowsDllImport.GetDiskFreeSpaceEx(path, out freeBytesOut, out var _, out var __))
freeBytes = freeBytesOut;
}
}
return freeBytes;
}
public static string GetLongPath(string path)
{
if (!ConfigParser.IsWindows)
return Path.GetFullPath(path); //GetFullPath: convert relative path to full path
//@"\\?\" prefix is needed for reading from long paths: https://stackoverflow.com/questions/44888844/directorynotfoundexception-when-using-long-paths-in-net-4-7 and https://superuser.com/questions/1617012/support-of-the-unc-server-share-syntax-in-windows
if (
path.Length >= 2 //necessary to avoid exceptions in Substring()
&& path.Substring(0, 2) == @"\\" //network path or path already starting with \\?\
)
{
return path;
}
else
{
return @"\\?\" + Path.GetFullPath(path); //GetFullPath: convert relative path to full path
}
}
public static string GetDirPathWithTrailingSlash(string dirPath)
{
if (string.IsNullOrWhiteSpace(dirPath))
return dirPath;
dirPath = Path.Combine(dirPath, "."); //NB! add "." in order to ensure that slash is appended to the end of the path
dirPath = dirPath.Substring(0, dirPath.Length - 1); //drop the "." again
return dirPath;
}
public static async Task FSOperation(Action func, CancellationToken token)
{
//await Task.Run(func).WaitAsync(token);
func();
}
public static async Task<T> FSOperation<T>(Func<T> func, CancellationToken token)
{
//var result = await Task.Run(func).WaitAsync(token);
var result = func();
return result;
}
}
}