aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.FileSystem/FileSystemItem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.FileSystem/FileSystemItem.cs')
-rw-r--r--Software/Visual_Studio/Tango.FileSystem/FileSystemItem.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.FileSystem/FileSystemItem.cs b/Software/Visual_Studio/Tango.FileSystem/FileSystemItem.cs
index 558251f3c..c78a11732 100644
--- a/Software/Visual_Studio/Tango.FileSystem/FileSystemItem.cs
+++ b/Software/Visual_Studio/Tango.FileSystem/FileSystemItem.cs
@@ -84,5 +84,26 @@ namespace Tango.FileSystem
return item;
}
+
+ public String GetParent()
+ {
+ if (Path == "/") return null;
+
+ String root = System.IO.Path.GetPathRoot(Path);
+ var parent = Directory.GetParent(Path);
+
+ if (root == "\\")
+ {
+ return parent.FullName.Replace(parent.Root.FullName, "/").Replace("\\", "/");
+ }
+ else if (parent != null)
+ {
+ return parent.FullName;
+ }
+ else
+ {
+ return null;
+ }
+ }
}
}