From af29942117a828e244195a530d2aa40fa9b2a5e2 Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Sun, 18 Nov 2012 18:02:28 +0000 Subject: Ensure directory enumeration works whether there's a path seperator at the end of the directory or not diff --git a/src/Config.h b/src/Config.h index 5d2a1a5..d30c9b1 100644 --- a/src/Config.h +++ b/src/Config.h @@ -11,8 +11,10 @@ #ifdef WIN #define PATH_SEP "\\" +#define PATH_SEP_CHAR '\\' #else #define PATH_SEP "/" +#define PATH_SEP_CHAR '/' #endif //VersionInfoStart @@ -89,6 +91,8 @@ #define STAMPS_DIR "stamps" +#define BRUSH_DIR "Brushes" + #define APPDATA_SUBDIR "\\HardWIRED" //Number of unique thumbnails to have in cache at one time diff --git a/src/client/Client.cpp b/src/client/Client.cpp index 763814a..bde66d2 100644 --- a/src/client/Client.cpp +++ b/src/client/Client.cpp @@ -367,6 +367,9 @@ std::vector Client::DirectorySearch(std::string directory, std::str std::vector Client::DirectorySearch(std::string directory, std::string search, std::vector extensions) { //Get full file listing + //Normalise directory string, ensure / or \ is present + if(*directory.rbegin() != '/' && *directory.rbegin() != '\\') + directory += PATH_SEP; std::vector directoryList; #if defined(WIN) && !defined(__GNUC__) //Windows -- cgit v0.9.2-21-gd62e