以下の内容はhttps://blog.systemjp.net/entry/2018/12/17/015533より取得しました。


C++でファイルの存在確認

PathFileExists()

#include<Windows.h>
#include<iostream>
#include<Shlwapi.h>

#pragma comment(lib, "Shlwapi.lib")

int main(int argc, char* argv[])
{
    char path[] = "";
    if (PathFileExists(path))
    {
        std::cout << "file exists." << std::endl;
    }
    else
    {
        std::cout << "file doesn't exist." << std::endl;
    }
    return 0;
}



以上の内容はhttps://blog.systemjp.net/entry/2018/12/17/015533より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14