I just want a Finder that actually works. It’s pretty incredible just how bad Finder is. It’s by far the worst piece of software I’m forced to use on a daily basis.
I can use it as an orthodox file manager (with the f keys I remember from Norton Commander). I also like using it to access remote filesystems over nfs and sftp, and also S3 buckets. It also works well with Dropbox and iCloud. There is a great sync feature to keep source and target directories synchronised. It's also good for diffing directories at a glance. It's good at managing archive files too. Plus the regex file rename feature is often handy for me - I have a few presets saved for various purposes. It's also my go-to MacOS uninstaller, as it gathers the related files.
- Awkward sorting by name (mixing folders and files), unless you change the default
- Does not snap files to a grid by default on icon view, leaving some folders looking like a mess
- Not possible to figure out what's the exact path of the open folder - I just want a full path in the header/title bar. Or let me copy the full path without having to open "get info"
Apart from the Path bar in the bottom, there is also an old school title bar method:
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
killall Finder
("false" for reversing it.)
It doesn’t work for great for tabs, though, because tabs are short and paths are long.
> Or let me copy the full path …
There are some alternative fun and old methods:
* If you're hovering over the title bar of a finder window there is a little folder icon, the so-called proxy icon which gives access to the current folder. One can drag and drop it and it moves the folder. Dragging a folder or the proxy icon on the Dock icon of Terminal or iTerm opens a new window with the working directory directly set to the folder. But dragged into a text field you're getting the text path. Right click gives you a dropdown for navigation in the current folders path.
The proxy icon was stable in Finder until recently, now you need to hover. But you can re-activate the permanent display of the proxy icon under System Settings → Accessibility → Display, I think.
* MacOS has, since the Next days, the concept of Services. Services are little actions which the System and (good) Apps can provide to do something with with something. Services are found in the context menu or the App menu. If you're right clicking on a folder (sadly not the proxy icon), there are Service Actions by Terminal and iTerm for opening a window or tab for a selected folder.
* AppleScript:
tell application "Finder"
if exists window 1 then
set currentDir to POSIX path of ((target of front Finder window) as text)
else
set currentDir to POSIX path of (path to desktop folder)
end if
set the clipboard to currentDir
end tell
It works in Script Editor at least. I'm not an AppleScript expert.
But you can use AppleScript everywhere in MacOS. The Script-Menu, as an own App, as an Automator action or a Shortcut, you can give those hotkeys, possible use them in Alfred or Raycast, etc.
Apart from the syntax it will be a sad day, if Apple retires the AppleScript architecture.
Once there was a nice app called ThisService which could convert shell scripts into services, but it is not developed anymore.
The modern equivalent is "Run Shell Script" in Shortcuts or maybe Automator. Shortcuts has the advantage that you can use your shortcut directly in Quick Actions in Finder's context menu.
I played around a minute and created this but I'm not a Shortcuts expert.
One insane caveat: For this to work you'll need to grant Finder Full Disc Access in System Settings → Security. Yes, it sounds insane. It is. But it works.
Sorting folders seperately is definitely a personal preference thing. This behavior drives me nuts in Explorer and Linux file managers.
I’d support this being an option in the View menu or View Options palette, but I think I would lose my mind if this behavior were made default with no way to turn it off.
Sounds like you want "Show Path Bar" (in the View menu), though it lives at the bottom of the window not in the header.
The sorting by name criticism is a weird one to me though. You want it to not sort by name when you tell it to sort by name, and instead sort by file vs folder and then within those two groups sort by name?
I should have paid more attention to the menu bar. Show Path Bar helps with my needs.
For sorting I want it to sort like File Explorer or Dophin. So folders on top (sorted by name), then files (sorted by name). It works if I change Settings > Advanced > Keep folders on top.
Things that are hard: launching a terminal at a location, viewing or copying a files path, navigating a deep file system, column width in the column view, searching for files, finding file info, and lots of other.
except Excel's ribbon menu items. As far as I know there's no method to hotkey those like ALT+[<letter>] on windows. Same for Outlook's categorize email function.
Of all four, searching for files on a Mac is a dream.
Apple Spotlight is and always has been lightyears ahead of whatever garbage Microsoft use on Windows.
And don't get me started on the inconvenience of searching for files on Linux or BSD, I mean, for starters you have to download a non-default tool like `fd` if you want to search at any reasonable speed.
This just tells me you've never used they only file search dream - Everything search, unfortunately Windows only. Spotlight has never come close to that
> Apple Spotlight is and always has been lightyears ahead of whatever garbage Microsoft use on Windows.
I certainly agree on that, and I also find it more convenient than the desktop search options I’ve tried on Linux (there I usually drop to the command line to search).
But despite really wanting to like Spotlight, e.g. its integration with Apple Mail with email previews is great, I find it unusable for heavy work. I’ve tried customizing it to disable lots of search backends that I don’t need, but still for reasons I don’t understand, it sometimes takes 5+ seconds to process my search results before showing anything, and even the average search often takes a second and is not well-sorted.
In comparison, Alfred is always instant at searching on my computer, and I really prefer how you can explicitly tell it what you are searching for (e.g. `'filename`, `in file contents`, `=math`, etc.) whereas Spotlight tries to guess this and often guesses wrong. It’s also easier to customize if you want to integrate e.g. specific web searches in it.
I’ve tried Raycast since lots of people praise it, but I still find Alfred to have a nicer and more responsive interface, but perhaps it’s just what I’m used to.
I think something is wrong with your Spotlight index if it takes that long. Recently something went a bit funny with my Spotlight that made it take as long as you're describing, but after a reboot it's pretty instantaneous as usual. I work with large numbers of files (tens of thousands per project, with about 40-50 projects) so I don't think it can be that. I'm pretty sure there are ways to rebuild your Spotlight index.
I haven't come across issues with ordering, but my use cases are usually pretty simple, so that might be down to a difference in our workflows.
Searching on my SMB network share doesn't work. At all. It's not just that Spotlight won't index it. It's that you can't even search by filename within the current folder you're viewing.
A workaround for this (especially if you have a terminal always open) is to drag the file/folder you want to operate on into an open terminal window, which will paste in its path.
This is what I do as well. Note that nearly every MacOS app shows a file or folder icon in its title bar if you hover the mouse over it – this icon can be dragged into a terminal to open the current file or folder there. Also useful if I e.g. want to grep something in a currently open text file in the terminal, or something like that.
(There is a system setting to always show this in the title bar without hovering, which was the old default behavior before Big Sur if I recall correctly. I’m a bit annoyed that it’s now hidden away by default.)
I always feel like I'm missing something, but I find the creation of new folders really awkward. I'd like to just be able to right-click on a folder or even on a file or between two files and have it create a new folder there. But the new folder option is not available in those cases. I have to go to File->New Folder or click on the empty bottom of the screen, create the new folder there, and then drag it. Would love to hear if someone can offer tips for this.
Yes, I was thinking the same.. For several years, I'm pretty happy with PathFinder by Cocoatech: https://cocoatech.io/
The things I miss the most when I accidentically open a Finder window: Cut files wit CMD+X to move them (never understood this when coming from Windows), cycle the files in a folder (start on top if you reach bottom and vice versa) and the comprehensive info bar on the right for files and folders. Give it a try :)
I used it for years and got so fed up with its pain points, including frequent crashes, a licensing system that never worked and nagged me despite legitimate purchase, and updates which reset and lost my preferences and sidebar organization. I’m now galaxy brained back to Finder again.
I've tried some clones for mac os, but they all missed some important (at least to me) functions. Like typing not going to the command line editor, or not having a command line at all.
So it's midnight commander from macports for most complex file operations for me.
I’ve never really understood the love for Explorer in any of its iterations. It was just alright at its best in the Win7 era and somewhere between mediocre and bad in other eras.
Anyone who thinks finder is the worst file browser hasn't used Windows for 25+ years. Explorer can't even search files on the hard drive of the computer it's running on.
Explorer has its thumbnail processor on the same thread as the UI so if you have a lot of pictures in a directory it'll just hang indefinitely. Sometimes if you have too many files it won't display any at all.
If explorer crashes, it's the same process as your desktop and taskbar, so that disappears too.
Whenever I read comments like this, I know that it is someone that has switched from another OS. macOS is neither Windows, KDE or Gnome. An awful lot of the functionality that you deem 'nonsense' comes from the days of classic Macintosh and even from NeXTSTEP.
In fact, nearly all the complaints I see in this and similar threads come down to people expecting macOS to behave like their previous OS did, and being surprised that it doesn't.
i mean ... is it possible to move a file? the context menu doesn't seem to have a corresponding entry.
currently have a weird situation where a bunch of folders are arranged horizontally and go beyond the right border of the window. but there is no horizontal scroll bar indicating that.
the windows xp/nt/2000 file explorer is the pinnacle of file exploring experience. basically every linux file explorer just more or less copied it - for good reason. but no - apple has to reinvent the wheel and came up with a messed up hexagon.