Retrieve LeafOutput operational

This commit is contained in:
2016-02-26 11:54:07 -05:00
parent 76722345a8
commit 59e2f9d8bd
14 changed files with 296 additions and 64 deletions
+5
View File
@@ -45,5 +45,10 @@ namespace LeafWeb.Core.Utility
{
return Regex.Replace(input, @"[^\w_]", "");
}
public static string FilenameFromPath(this string path)
{
return Regex.Replace(path, @".*/([^/]*$)", "$1");
}
}
}