Skip to content

Instantly share code, notes, and snippets.

@pezy
Created September 17, 2013 09:09
Show Gist options
  • Save pezy/6591919 to your computer and use it in GitHub Desktop.
Save pezy/6591919 to your computer and use it in GitHub Desktop.
PathFileExists
#include <windows.h>
#include <iostream>
#include "Shlwapi.h"
#pragma comment(lib, "Shlwapi.lib")
using namespace std;
int main(void)
{
// Valid file path name (file is there).
char buffer_1[ ] = "\\\\10.88.144.198\\os\\陈平20-9井.mdb";
char *lpStr1;
lpStr1 = buffer_1;
// Invalid file path name (file is not there).
char buffer_2[ ] = "\\\\10.88.144.198\\空";
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;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment