manifest files should be skipped, hopefully fixed in r50626.
just wondering about a more general solution; what happens if you search
for the executable bit when run from Windows, where such a distinction may
not exist?
if (access(filepath, X_OK) == 0) {
G_message("is exe");
}
manifest files should be skipped, hopefully fixed in r50626.
just wondering about a more general solution; what happens if you search
for the executable bit when run from Windows, where such a distinction may
not exist?
if (access(filepath, X_OK) == 0) {
G_message("is exe");
}
r50633, quick check, doesn't work on Windows. Don't know why.