Environment.GetFolderPath(Environment.SpecialFolder を使用してパス + ファイル名から文字列変数を設定します。そのファイルには、Windows サーバー 2003 および xp では正しく機能する拡張子がありませんが、Windows 7 および Windows サーバー 2008 では機能しません。
var path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.System), "testxyz");
if (File.Exists(path))
{return true;}
else
{return false;}