Questions tagged [windows-explorer]

Windows Explorer is a file manager application that is included with releases of the Microsoft Windows operating system from Windows 95 onwards.

Overview

Windows Explorer is a file manager application that is included with releases of the Microsoft Windows operating system from Windows 95 onwards. It provides a graphical user interface for accessing the file systems. It is sometimes referred to as the Windows Shell, explorer.exe, File Explorer, or simply “Explorer”.

See also

570 questions
252
votes
20 answers

How to add a "open git-bash here..." context menu to the windows explorer?

How to add a context (aka right click) menu to the windows explorer that, when clicked, opens the git-bash console in the current explorer folder?
sergej
  • 17,147
  • 6
  • 52
  • 89
197
votes
5 answers

How can I open Windows Explorer to a certain directory from within a WPF app?

In a WPF application, when a user clicks on a button I want to open the Windows explorer to a certain directory, how do I do that? I would expect something like this: Windows.OpenExplorer("c:\test");
Edward Tanguay
  • 189,012
  • 314
  • 712
  • 1,047
196
votes
14 answers

Windows Explorer "Command Prompt Here"

I frequently find myself with a folder open in Windows, wishing to have a command prompt open with the same working directory. I am aware of Power Toys "Command Prompt", but that only works as a context menu item on the folder, and not from inside…
recursive
  • 83,943
  • 34
  • 151
  • 241
131
votes
6 answers

Tree view of a directory/folder in Windows?

In Linux/KDE, I can see a directory as a tree. How can I do it in Windows 7? Consider I do NOT mean "Windows Explorer". This just shows the directories, I also want the files.
Pietro
  • 12,086
  • 26
  • 100
  • 193
101
votes
2 answers

Copy a file list as text from Windows Explorer

Is there a quick way to copy a list of filenames as text into the clipboard from Windows Explorer? I can do it from the command prompt with dir > filenames.txt, but I am looking for something along the lines of Ctrl + C -> Ctrl + V.
Tom Hubbard
  • 15,820
  • 14
  • 59
  • 86
84
votes
4 answers

ShellIconOverlayIdentifiers - why so few?

At this point, everyone knows that there's a limit to the number of ShellIconOverlayIdentifiers (from MSDN): The number of different icon overlay handlers that the system can support is limited by the amount of space available for icon overlays in…
rbellamy
  • 5,683
  • 6
  • 38
  • 48
59
votes
8 answers

Drag and drop onto Python script in Windows Explorer

I would like to drag and drop my data file onto a Python script and have it process the file and generate output. The Python script accepts the name of the data file as a command-line parameter, but Windows Explorer doesn't allow the script to be a…
grok
  • 906
  • 1
  • 14
  • 14
58
votes
5 answers

Configure Windows Explorer Folder Options through Powershell

I'm looking for a way to configure a few options in Folder Option dialog of Windows Explorer through Powershell. The options are: Choose "Show hidden files, folders, and drives" Uncheck "Hide extensions for known file types" Uncheck "Hide protected…
stacker
  • 14,641
  • 17
  • 46
  • 74
41
votes
6 answers

Open folder in VS Code from Windows Explorer

While installing the VS Code, we get an option to tick for Open with Code. I gave the tick mark for only files but not for folders. So how to turn it on after installation? When I'm opening a file: When I'm opening a folder : I want the Open with…
35
votes
5 answers

How do I display a file's Properties dialog from C#?

How to open an file's Properties dialog by a button private void button_Click(object sender, EventArgs e) { string path = @"C:\Users\test\Documents\tes.text"; // how to open this propertie } Like windows right click on a file and you can…
User6996
  • 2,953
  • 11
  • 44
  • 66
35
votes
6 answers

How can a batch file run a program and set the position and size of the window?

I have batch file that sets up the desktop environment for me when I am writing code. The file is named: SetEnv.cmd and it opens 3 other windows: An instance of Windows Explorer that is set to the app server's deploy directory. A second instance…
Sean Mickey
  • 7,618
  • 2
  • 32
  • 58
27
votes
5 answers

Python: How to open a folder on Windows Explorer(Python 3.6.2, Windows 10)

If I store the path that i want to open in a string called finalpath which looks something like this: "./2.8 Movies/English/Die Hard Series" then how do i open this in Windows Explorer?(Windows 10)(Python 3.6.2) P.S I know many people have asked…
26
votes
5 answers

C#: How to open Windows Explorer windows with a number of files selected

In the Library of Windows Media Player you can select one or more music files. You can then right-click and in their context menu choose Open File Location. This will open up one windows explorer window for each directory that the files are in, and…
Svish
  • 152,914
  • 173
  • 462
  • 620
24
votes
8 answers

How to create a right-click context shell shortcut "edit with Emacs"?

Notepad++ automatically adds a shell shortcut so that when you're in Windows Explorer, you can right-click on a file and select "edit with Notepad++". How can I do the same with emacs? I am using GNU Emacs 22.3 for Windows.
namin
  • 37,139
  • 8
  • 58
  • 74
22
votes
3 answers

How can I programmatically refresh Windows Explorer?

I have a Windows shell extension that uses IShellIconOverlayIdentifier interface to display overlay icons on files and folders. My extension is a little like TortoiseCVS or TortoiseSVN. Sometimes I need to make Windows Explorer redraw all it's…
HughE
  • 523
  • 1
  • 4
  • 10
1
2 3
37 38