Is there a way to get FileZilla to ignore case for sorting file and folder names? I want to see all the filenames that start with "D" next to the ones that start with "d."

link|improve this question

74% accept rate
I'm curious, is there any particular reason you're using FileZilla on OS X and not e.g. Cyberduck? – Daniel Beck Apr 15 '11 at 16:57
@Daniel Beck, yeah, looks much more impressive now than 2 years ago when I tried it last. That may be another way to solve the problem :) – Yar Apr 17 '11 at 4:46
@Randolf Richardson I appreciate the edits to the text, but I changed the title back to title capitalization. Thanks. – Yar Apr 17 '11 at 4:49
@Daniel Beck, the only reason that I can think of is "synchronized browsing" which I use a lot. – Yar Apr 18 '11 at 15:03
feedback

1 Answer

up vote 2 down vote accepted

There is no option, since this is hard-coded.

It's in the current source code, src/LocalListView.cpp and src/RemoteListView.cpp:

inline int CmpName(const CLocalFileData &data1, const CLocalFileData &data2) const
{
#ifdef __WXMSW__
    return data1.name.CmpNoCase(data2.name);
#else
    return data1.name.Cmp(data2.name);
#endif
}

FileZilla only sorts case-insensitively on Windows due to __WXMSW__ (wxWidgets Microsoft Windows) being defined there.

You can always download the sources, change these few lines, and recompile yourself.

link|improve this answer
Wow, thanks SO MUCH @Daniel Beck, I think I'll do that. – Yar Aug 30 '11 at 12:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.