SHCreateDirectory (SHELL32.165)
DWORD SHCreateDirectory ( HWND hWnd, LPCVOID path )
This function creates a file system folder whose fully qualified path is given by path. If one or more of the intermediate folders do not exist, they will be created as well.
hWnd | [In] | . |
path | [In] | path of directory to create. |
ERROR_SUCCESS or one of the following values: ERROR_BAD_PATHNAME if the path is relative ERROR_FILE_EXISTS when a file with that name exists ERROR_PATH_NOT_FOUND can't find the path, probably invalid ERROR_INVALID_NAME if the path contains invalid chars ERROR_ALREADY_EXISTS when the directory already exists ERROR_FILENAME_EXCED_RANGE if the filename was too long to process.
exported by ordinal Win9x exports ANSI WinNT/2000 exports Unicode
Declared in "include/shlobj.h". gitlab.winehq.org/wine/wine/blob/master/include/shlobj.h
Implemented in "dlls/shell32/shlfileop.c". gitlab.winehq.org/wine/wine/blob/master/dlls/shell32/shlfileop.c
Debug channel "shell".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.