diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/File/FileIO.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/File/FileIO.cs
index cc67e8da..ffc0bfe3 100644
--- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/File/FileIO.cs
+++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/File/FileIO.cs
@@ -12,22 +12,7 @@ namespace PepperDash.Essentials.Core
{
static CCriticalSection fileLock = new CCriticalSection();
- ///
- ///
- ///
- ///
- ///
- public static bool FileExsists(string fileName)
- {
- if (GetFile(fileName) == null)
- {
- return false;
- }
- else
- {
- return true;
- }
- }
+
///
/// Get the full file info from a path/filename, can include wildcards.
///
@@ -69,7 +54,7 @@ namespace PepperDash.Essentials.Core
///
///
///
- public static string GetDataFromFile(FileInfo file)
+ public static string ReadDataFromFile(FileInfo file)
{
try
{