-
Notifications
You must be signed in to change notification settings - Fork 35
/
Extensions.cs
40 lines (34 loc) · 1.05 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
using System.IO;
namespace MarkdownMode
{
internal static class Extensions
{
public static string ResolveRelativePath(this FileInfo self, string relativePath)
{
if (self == null || !self.Exists)
{
return null;
}
return self.Directory.ResolveRelativePath(relativePath);
}
public static string ResolveRelativePath(this DirectoryInfo self, string relativePath)
{
if (self == null)
{
return null;
}
var basePath = self;
while (relativePath != null && relativePath.StartsWith(".."))
{
if (basePath.Parent == null)
{
// Relative path can't be resolved
return null;
}
relativePath = relativePath.TrimStart('.').TrimStart('\\');
basePath = basePath.Parent;
}
return Path.Combine(basePath.FullName, relativePath);
}
}
}