123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #include <stdlib.h>
- #include <string.h>
- #include <time.h>
- #include <winpr/crt.h>
- #include <winpr/file.h>
- #include <winpr/path.h>
- int TestPathMakePath(int argc, char* argv[])
- {
- int x;
- size_t baseLen;
- BOOL success;
- char tmp[64];
- char* path;
- char* cur;
- char delim = PathGetSeparatorA(0);
- char* base = GetKnownPath(KNOWN_PATH_TEMP);
- if (!base)
- {
- fprintf(stderr, "Failed to get temporary directory!\n");
- return -1;
- }
- baseLen = strlen(base);
- srand(time(NULL));
- for (x = 0; x < 5; x++)
- {
- sprintf_s(tmp, ARRAYSIZE(tmp), "%08X", rand());
- path = GetCombinedPath(base, tmp);
- free(base);
- if (!path)
- {
- fprintf(stderr, "GetCombinedPath failed!\n");
- return -1;
- }
- base = path;
- }
- printf("Creating path %s\n", path);
- success = PathMakePathA(path, NULL);
- if (!success)
- {
- fprintf(stderr, "MakePath failed!\n");
- free(path);
- return -1;
- }
- success = PathFileExistsA(path);
- if (!success)
- {
- fprintf(stderr, "MakePath lied about success!\n");
- free(path);
- return -1;
- }
- while (strlen(path) > baseLen)
- {
- if (!RemoveDirectoryA(path))
- {
- fprintf(stderr, "RemoveDirectoryA %s failed!\n", path);
- free(path);
- return -1;
- }
- cur = strrchr(path, delim);
- if (cur)
- *cur = '\0';
- }
- free(path);
- printf("%s success!\n", __FUNCTION__);
- return 0;
- }
|