FVSDK_ERROR_CODE FVSDK_CreateDirectory(FVSDK_Session* pSession, LPCTSTR pszPathName);
Creates the directory specified by pszPathName. pszPathName should be the full path to the directory to be created.
pSession
A pointer to the FVSDK_Session that is to perform the operation.
pszPathName
The full path name to the directory to be created.
FVSDK_YES if the directory was successful created; FVSDK_NO if the directory could not be created. Error codes can be found in FVSDK_ErrorCodes.h.
// create the directory "/pub/test"
if (FVSDK_CreateDirectory(pSession, "/pub/test") != FVSDK_YES)
AfxMessageBox("Unable to create the new directory.");