// FileExists.cpp : メイン プロジェクト ファイルです。 #include "stdafx.h" using namespace System; using namespace System::IO; int main(array ^args) { String^ path = "C:\\MyFolder\\Homepage\\public_html\\Cprpr\\FileExists.cpp"; if (File::Exists(path)) { Console::WriteLine("FileExists.cpp は存在します。"); } else { Console::WriteLine("FileExists.cpp は存在しません。"); } return 0; }