New conversion complete

This commit is contained in:
2015-12-07 12:38:58 -05:00
parent 5b85662bdb
commit 50ae6cb52c
25 changed files with 815 additions and 281 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.IO;
namespace LeafWeb.Core.Tests
{
public static class FileUtility
{
public static FileInfo GetContentFile(string contentDirectory, string fileName)
{
var path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, contentDirectory);
return new FileInfo(path + fileName);
}
}
}