SimpleLogger.SimpleLog.LogFileExists C# (CSharp) Method

LogFileExists() public static method

Check, whether there is a log file for the passed date
public static LogFileExists ( System.DateTime dateTime ) : bool
dateTime System.DateTime The date and time to check the existance of a log file for
return bool
        public static bool LogFileExists(DateTime dateTime)
        {
            return File.Exists(GetFileName(dateTime));
        }