Make 'exist' in wcmd handle both file and directories.
diff --git a/programs/wcmd/builtins.c b/programs/wcmd/builtins.c
index 11570e9..90a55f4 100644
--- a/programs/wcmd/builtins.c
+++ b/programs/wcmd/builtins.c
@@ -384,7 +384,6 @@
void WCMD_if (char *p) {
-HANDLE h;
int negate = 0, test = 0;
char condition[MAX_PATH], *command, *s;
@@ -401,11 +400,8 @@
WCMD_parameter (p, 2+negate, &command);
}
else if (!lstrcmpi (condition, "exist")) {
- if ((h = CreateFile (WCMD_parameter (p, 1+negate, NULL), GENERIC_READ,
- FILE_SHARE_READ|FILE_SHARE_WRITE, NULL,
- OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL)) != INVALID_HANDLE_VALUE) {
- CloseHandle (h);
- test = 1;
+ if (GetFileAttributesA(WCMD_parameter (p, 1+negate, NULL)) != INVALID_FILE_ATTRIBUTES) {
+ test = 1;
}
WCMD_parameter (p, 2+negate, &command);
}