Mercurial > wgsdk
annotate src/dirtools.c @ 4:59bf702b2b21
*: stylistic changes
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 14 Aug 2022 13:17:32 -0400 |
parents | 8df8af626dca |
children | be4835547dd0 |
rev | line source |
---|---|
0 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 #ifndef WIN32_LEAN_AND_MEAN | |
5 # define WIN32_LEAN_AND_MEAN | |
6 #endif | |
7 #include <windows.h> | |
8 #include "dirtools.h" | |
9 | |
3
8df8af626dca
dirtools: sys/stat.h->windows.h
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
1
diff
changeset
|
10 int dirtools_directory_exists(char* path) { |
8df8af626dca
dirtools: sys/stat.h->windows.h
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
1
diff
changeset
|
11 DWORD attrib = GetFileAttributesA(path); |
8df8af626dca
dirtools: sys/stat.h->windows.h
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
1
diff
changeset
|
12 return (attrib != INVALID_FILE_ATTRIBUTES && (attrib & FILE_ATTRIBUTE_DIRECTORY)); |
8df8af626dca
dirtools: sys/stat.h->windows.h
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
1
diff
changeset
|
13 } |
8df8af626dca
dirtools: sys/stat.h->windows.h
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
1
diff
changeset
|
14 |
0 | 15 int dirtools_create_directory(char* path) { |
4 | 16 char* alltoks = calloc(strlen(path)+2, sizeof(char)), *tok; |
0 | 17 |
18 for (tok = strtok(path, "\\"); tok != NULL; tok = strtok(NULL, "\\")) { | |
19 strcat(alltoks, tok); | |
4 | 20 strcat(alltoks, "\\"); |
3
8df8af626dca
dirtools: sys/stat.h->windows.h
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
1
diff
changeset
|
21 if (dirtools_directory_exists(path)) { |
1 | 22 if (!CreateDirectoryA(alltoks, NULL)) { |
23 if (GetLastError() == ERROR_PATH_NOT_FOUND) { | |
24 /* ERROR_PATH_NOT_FOUND should NOT happen here */ | |
25 return 1; | |
26 } | |
27 } | |
0 | 28 } |
29 } | |
30 | |
1 | 31 free(alltoks); |
32 | |
0 | 33 return 0; |
34 } | |
35 | |
36 char* dirtools_concat_paths(char* a, char* b) { | |
37 if (a[0] == '\0' || b[0] == '\0') | |
38 return NULL; | |
39 char* out = calloc((strlen(a) + strlen(b) + 2), sizeof(char)); | |
40 if (out == NULL) | |
41 return out; | |
42 strcpy(out, a); | |
43 if (a[strlen(a)] != '\\' && b[0] != '\\') | |
44 strcat(out, "\\"); | |
45 strcat(out, b); | |
46 return out; | |
47 } |