NAME

PathIsDirectoryA  (SHLWAPI.@)

SYNOPSIS

 BOOL PathIsDirectoryA
 (
  LPCSTR lpszPath
 )

DESCRIPTION

Determine if a path is a valid directory.

PARAMS

lpszPath [In] Path to check.

RETURNS

FILE_ATTRIBUTE_DIRECTORY if lpszPath exists and can be read (See Notes) FALSE if lpszPath is invalid or not a directory.

NOTES

Although this function is prototyped as returning a BOOL, it returns FILE_ATTRIBUTE_DIRECTORY for success. This means that code such as:

  if (PathIsDirectoryA("c:\\windows\\") == TRUE)
    ...

will always fail.

IMPLEMENTATION

Declared in "shlwapi.h". https://source.winehq.org/source/include/shlwapi.h

Implemented in "dlls/shlwapi/path.c". https://source.winehq.org/source/dlls/shlwapi/path.c

Debug channel "shell".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Mar 2024.