BExIS.IO.FileHelper.FileExist C# (CSharp) 메소드

FileExist() 공개 정적인 메소드

public static FileExist ( string path ) : bool
path string
리턴 bool
        public static bool FileExist(string path)
        {
            if (File.Exists(path))
                return true;
            else
                return false;
        }