From 7d05d051b47db5dc6660f83a10b0c9f59f2c5ebd Mon Sep 17 00:00:00 2001 From: Themaister <maister@archlinux.us> Date: Tue, 19 Jun 2012 00:00:20 +0200 Subject: [PATCH] Sort directories before files. --- file_path.c | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/file_path.c b/file_path.c index 58c7a1f1e8..ad92bbed80 100644 --- a/file_path.c +++ b/file_path.c @@ -173,9 +173,35 @@ size_t dir_list_size(char * const *dir_list) return size; } -static int qstrcmp(const void *a, const void *b) +static size_t strcountelem(const char *str, const char *valid) { - return strcasecmp(*(char * const*)a, *(char * const*)b); + size_t count = 0; + + while (*str) + { + if (strchr(valid, *str++)) + count++; + } + + return count; +} + +static int qstrcmp(const void *a_, const void *b_) +{ + const char *a = *(const char * const*)a_; + const char *b = *(const char * const*)b_; + + ssize_t a_cnt = strcountelem(a, "/\\"); + ssize_t b_cnt = strcountelem(b, "/\\"); + + // Place directories on top. + // It is assumed that number of '/' or '\\' in path can determine + // if one path is a directory and the other is not. + + if (a_cnt != b_cnt) + return a_cnt - b_cnt; + else + return strcasecmp(a, b); } void dir_list_sort(char **dir_list)