Catel.LogAnalyzer.Helpers.FileHelper.Exists C# (CSharp) 메소드

Exists() 공개 정적인 메소드

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

            return File.Exists(fileName);
        }
        #endregion