Skip to content

Instantly share code, notes, and snippets.

@Mahno74
Last active July 6, 2021 10:38
Show Gist options
  • Save Mahno74/184e893c2102ff6ceab57807a2865b96 to your computer and use it in GitHub Desktop.
Save Mahno74/184e893c2102ff6ceab57807a2865b96 to your computer and use it in GitHub Desktop.
Проверка наличия файла
using System.IO;
public static bool CheckBd() {
string curDir = Directory.GetCurrentDirectory();
FileInfo fileInf = new FileInfo(curDir + "/store.mdb");
if (fileInf.Exists) return true;
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment