Catel.LogAnalyzer.Helpers.FileHelper.Exists C# (CSharp) Method

Exists() public static method

public static Exists ( string fileName ) : bool
fileName string
return bool
        public static bool Exists(string fileName)
        {
            Argument.IsNotNullOrWhitespace(() => fileName);

            return File.Exists(fileName);
        }
        #endregion