PathFileExistsW 関数 (shlwapi.h)

ファイルやフォルダーなどのファイル システム オブジェクトへのパスが有効かどうかを判断します。

構文

BOOL PathFileExistsW(
  [in] LPCWSTR pszPath
);

パラメーター

[in] pszPath

型: LPCTSTR

検証するオブジェクトの完全なパスを含む最大長MAX_PATHの null で終わる文字列へのポインター。

戻り値

種類: BOOL

ファイルが存在する場合は TRUE。それ以外の場合は FALSE。 拡張エラー情報については 、GetLastError を呼び出します。 ファイルが存在しない場合、 GetLastErrorERROR_FILE_NOT_FOUNDを返します。

注釈

この関数は、パスの有効性をテストします。

汎用名前付け規則 (UNC) で指定されたパスは、ファイルのみに制限されます。つまり、\server\share\file は許可されます。 サーバーまたはサーバー共有への UNC パスは許可されていません。つまり、\server または \server\share です。 この関数は、マウントされたリモート ドライブがサービス外の場合に FALSE を 返します。


#include <windows.h>
#include <iostream.h>
#include "Shlwapi.h"

void main(void)
{
    // Valid file path name (file is there).
    char buffer_1[ ] = "C:\\TEST\\file.txt"; 
    char *lpStr1;
    lpStr1 = buffer_1;
    
    // Invalid file path name (file is not there).
    char buffer_2[ ] = "C:\\TEST\\file.doc"; 
    char *lpStr2;
    lpStr2 = buffer_2;
    
    // Return value from "PathFileExists".
    int retval;
    
    // Search for the presence of a file with a true result.
    retval = PathFileExists(lpStr1);
    if(retval == 1)
    {
        cout << "Search for the file path of : " << lpStr1 << endl;
        cout << "The file requested \"" << lpStr1 << "\" is a valid file" << endl;
        cout << "The return from function is : " << retval << endl;
    }
    
    else
    {
        cout << "\nThe file requested " << lpStr1 << " is not a valid file" << endl;
        cout << "The return from function is : " << retval << endl;
    }
    
    // Search for the presence of a file with a false result.
    retval = PathFileExists(lpStr2);
    
    if(retval == 1)
    {
        cout << "\nThe file requested " << lpStr2 << "is a valid file" << endl;
        cout << "Search for the file path of : " << lpStr2 << endl;
        cout << "The return from function is : " << retval << endl;
    }
    else
    {
        cout << "\nThe file requested \"" << lpStr2 << "\" is not a valid file" << endl;
        cout << "The return from function is : " << retval << endl;
    }
}

OUTPUT
==============
Search for the file path of : C:\TEST\file.txt
The file requested "C:\TEST\file.txt" is a valid file
The return from function is : 1

The file requested "C:\TEST\file.doc" is not a valid file
The return from function is : 0

Note

shlwapi.h ヘッダーは PathFileExists をエイリアスとして定義します。これは、UNICODE プリプロセッサ定数の定義に基づいて、この関数の ANSI または Unicode バージョンを自動的に選択します。 encoding-neutral エイリアスの使用を encoding-neutral ではないコードと混在すると、コンパイル エラーまたはランタイム エラーが発生する不一致が発生する可能性があります。 詳細については、「 関数プロトタイプの規則」を参照してください。

要件

要件
サポートされている最小のクライアント Windows 2000 Professional、Windows XP [デスクトップ アプリのみ]
サポートされている最小のサーバー Windows 2000 Server [デスクトップ アプリのみ]
対象プラットフォーム Windows
ヘッダー shlwapi.h
Library Shlwapi.lib
[DLL] Shlwapi.dll (バージョン 4.71 以降)