Live data from Hacker News

Windows Explorer Through the Years

gekk.info

51–60 of 185 posts

Re: Windows Explorer Through the Years

#51
post #5

Related and kind of interesting, the original File Manager was open sourced and recompiled for modern Windows. https://github.com/microsoft/winfile

Floating windows in floating windows, I can't believe I forgot that was ever a thing.

It's called Multiple Document Interface (MDI) and in some instances can be quite useful. MS have completely depreciated it now to the extent that MDI apps no longer render their window chrome properly since Windows 7.

Re: Windows Explorer Through the Years

#52
The article says that Windows 95 file explorer is not that deeply altered from File Manager. While this might be somewhat true in visual sense, it is completely different beast in what it does.

File Manager was just what it says on the tin and showed directories and files, while Explorer displays what is essentially an arbitrary graph of COM objects and allows you to call methods on them. One particularly notable point about that is that it is not that MS renamed directories to folders in Windows 95, these are names for two slightly different concepts. Directories are on filesystem, while folder is essentially anything that can be shown as explorer window (including desktop, control panel, various synthesized views of start menu contents, "god-mode menu"...).

Re: Windows Explorer Through the Years

#54
post #34
post #31

Earlier quoted context omitted.

I've always used "start ." in cmd to open explorer. "start" is kind of useful to know since it triggers the default action for a file, e.g. "start foo.txt" opens it in Notepad or whatever your default text editor is. "start "."" however opens another cmd window. Consistency is not a strong point.

start uses the first quoted argument as the window title and with your example the actual argument is missing, hence you get a new console window.

Aaargh. I always forget that while UNIX strips one layer of quotes from arguments, DOS and its inheritors have no parsing and just pass the whole thing through. So you can have semantically meaningful quotes.

Re: Windows Explorer Through the Years

#56
post #52

The article says that Windows 95 file explorer is not that deeply altered from File Manager. While this might be somewhat true in visual sense, it is completely different beast in what it does. File Manager was just what it says on the tin and showed directories and files, while Explorer displays what is essentially an arbitrary graph of COM objects and allows you to call methods on them. One particularly notable poi…

Ah yes, the https://en.wikipedia.org/wiki/Windows_Master_Control_Panel_s...

> The shortcut is implemented by creating a folder with the extension .{ED7BA470-8E54-465E-825C-99712043E01C}

Re: Windows Explorer Through the Years

#57
post #2

I wish Windows Save/Open dialogues would have links to already open Explorer windows (much like the links to Documents.) Rationale: Project are often contained in a single root folder. I often start by opening this folder in Explorer. Some programs can be started by double clicking files. Others cannot. Saving new files always requires interacting with the save dialog and thus browsing to the project folder again.

This is something MacOS has over Windows. Dragging a folder from Finder into the safe file dialogue opens that folder in the dialogue. You can also drag a search result from Spotlight in to the save file dialogue. Also works with the open file dialogue.

That works with GTK and Qt file dialogs on Linux too

Re: Windows Explorer Through the Years

#58
post #36

Earlier quoted context omitted.

Da fck. I recently learned you can add this feature to the right click context menu via adding a registry entry. If I’d’a known shift-right click I wouldn’t make bothered.

Shift right click has always been the way to get the "advanced" context menu. Well, at least back to Windows 95. Fun fact: since the shortcut for the context menu is Shift+F10, you'll always get the extended menu since you'll always have shift pressed when the menu appears.

Did not know that! I've always used the "menu key" for keyboard access to the context menu instead.

Re: Windows Explorer Through the Years

#59

Sorry for offtopic, but I'd like to share a tip I can't imagine living without. You can type cmd in explorer address bar and it'll open cmd in that directory (probably works with any other program in your %PATH%). Also you can type `explorer .` in cmd to open explorer in the current directory.

Equivalents on a Mac: drag a folder onto terminal's icon in the dock to open a shell there, and "open ." in a shell to open finder there.

Re: Windows Explorer Through the Years

#60
post #2

I wish Windows Save/Open dialogues would have links to already open Explorer windows (much like the links to Documents.) Rationale: Project are often contained in a single root folder. I often start by opening this folder in Explorer. Some programs can be started by double clicking files. Others cannot. Saving new files always requires interacting with the save dialog and thus browsing to the project folder again.

I second your rationale because I always do that like you. And the good news is that, you can achieve that with Listary. I'm using an old version of it due to few years ago I found that new versions do perform as fast as the old ones.

Thanks for the tip! Will give it a try.
Post reply on HN