CSL.DirectoryHandler.GetFileExists C# (CSharp) 메소드

GetFileExists() 공개 정적인 메소드

public static GetFileExists ( string file ) : bool
file string
리턴 bool
        public static bool GetFileExists(string file)
        {
            FileInfo fi = new FileInfo(file);
            if (fi.Exists)
                return true;
            else
                return false;
        }