CSKernelFile.cFile.fileExists C# (CSharp) 메소드

fileExists() 개인적인 정적인 메소드

private static fileExists ( string fullFileName ) : bool
fullFileName string
리턴 bool
        private static bool fileExists(string fullFileName) 
        {
            try
            {
                if (fullFileName == "\\ .")
                {
                    return false;
                }
                else 
                {
                    FileInfo fi = new FileInfo(fullFileName);
                    return fi.Exists;                
                }
            }
            catch (Exception ex) {
                return false;
            }
        }