728x90
반응형

 

MSDN

https://docs.microsoft.com/en-us/windows/win32/api/shlwapi/nf-shlwapi-pathfileexistsa

 

PathFileExistsA function (shlwapi.h) - Win32 apps

Determines whether a path to a file system object such as a file or folder is valid.

docs.microsoft.com


 

Header

#include <Shlwapi.h>

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

 

Syntax

BOOL PathFileExistsA(
  [in] LPCSTR pszPath
);
  • Parameters
    - 파일의 절대 경로를 LPCTSTR 타입으로 넣어줌. ( ex) L"C:\Users\hwan\Desktop\test.exe" )

 

  • Return value
    - 파일이 존재할 경우 True, 존재하지 않은 경우 False

728x90
반응형

+ Recent posts