// 判断是否存在文件
BOOL pathIsFile(TCHAR* lpPath)
{
    // 过滤路径是文件夹的情况
  // Code by Lthis
if (PathIsDirectory(lpPath)) return FALSE; if (PathFileExists(lpPath)) return TRUE; return FALSE; }

 

相关文章:

  • 2022-01-17
  • 2021-11-18
  • 2022-02-26
  • 2021-11-19
  • 2021-05-21
  • 2022-01-04
  • 2021-10-02
猜你喜欢
  • 2021-12-22
  • 2022-12-23
  • 2022-01-17
  • 2022-12-23
  • 2022-12-23
  • 2021-05-31
  • 2022-12-23
相关资源
相似解决方案