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;
        }