Tagged Questions
The explorer tag has no wiki summary.
25
votes
5answers
26k views
C#, Open Folder and Select the file
the following code produces a file not found exception.
System.Diagnostics.Process.Start(
"explorer.exe /select,"
+ listView1.SelectedItems[0].SubItems[1].Text + "\\"
+ ...
15
votes
2answers
2k views
Drag and drop to Desktop / Explorer
Following my scenario.
I got an Application which loads a Filestructure (Folders, Files) from a Database into a WPF ListView. Now I'd like to grab a file from this ListView, drag it over my Desktop ...
10
votes
2answers
203 views
How to set clear attribute “X” on files with in C#?
I have a hidden file on my USB removable storage (FAT file system).
I'm using Windows 7. If I go to Properties window of this file and then to the Details tab, I will see that the attributes of the ...
9
votes
5answers
4k views
ViM: minibufexpl versus bufexplorer plugins
I am thinking of installing a buffer explorer for vim. Both minibufexpl and bufexplorer have very good rating. Can anyone explain the differences or the pros and cons between them. Or is only a matter ...
9
votes
1answer
984 views
Open Explorer on a file
In Python, how to jump to file in Windows Explorer (like in Winamp)? I found a solution for jumping to folders:
import subprocess
subprocess.Popen('explorer "C:\path\of\folder"')
but I have no ...
8
votes
2answers
473 views
How to get the sort order in Delphi as in Windows Explorer?
Summarization:
The terminology that I have been
looking for seems to be "natural
sort".
For behaviors in operating systems:
For Windows (version >= XP), Windows Explorer utilizes natural
sort.
For ...
8
votes
3answers
5k views
How to create an Explorer-like folder browser control?
Using C# and WinForms in VS2008, I want to create a file browser control that looks and acts like the left pane in Windows Explorer. To my astonishment, such a control does not ship with .NET by ...
8
votes
5answers
6k views
getElementById.contentDocument error in IE
<html>
<script type="text/javascript">
function func() {
alert(document.getElementById('iView').contentDocument);
}
</script>
<body>
...
7
votes
4answers
256 views
Is there an edit control for Delphi that allows path editing?
I have various hierarchical structures and would like to allow navigation around then using an editor like the Microsoft one found in the explorer address bar below. Is there such a Delphi component? ...
7
votes
4answers
627 views
How to tell Windows Explorer not to request file details and thumbnails in certain folder?
Is there a way (via shell extension or registry setting) to tell Windows Explorer that it shouldn't read files in the folder being shown in order to extract metadata or create thumbnails?
The ...
7
votes
10answers
4k views
c# open folder
I saw the other topic and I'm having another problem .. The process is starting(saw at task manager) but the folder is not opening on my screen ..
...
7
votes
5answers
10k views
Internet Explorer 8 - Session Shared among Explorer Window
IE 8 sharing session among different Explorer Window for same domain.
Like if you are a logined at hotmail.com in IE 8, and you have open another explorer window for hotmail.com, you will ...
7
votes
4answers
4k views
How do you show the Windows Explorer context menu from a C# application?
I have a file listing in my application and I would like to allow people to right-click on an item and show the Windows Explorer context menu. I'm assuming I would need to use the IContextMenu ...
6
votes
3answers
441 views
Gracefully Exit Explorer (Programmatically)
How do you gracefully close Explorer programmatically?
By that I mean, how do you invoke this function programmatically:
Edit: Typo in the picture, it should say "Ctrl-Shift-Right-Click" instead ...
6
votes
3answers
320 views
Drag Drop from .NET application to Explorer
I'm looking to provide users with ability to drag&drop files from grids and other controls in my application into Explorer.
Any good samples/articles for that?
6
votes
5answers
2k views
Windows Explorer control for WPF?
Is there a way to have a Windows Explorer on WPF? The closes I can get is the Web Browser, but it's not really what I need.
Please assist.
Thanks
5
votes
1answer
137 views
Java - Moving file from Explorer to Java GUI - what kind of event is that?
I would like to move files from the Windows Explorer to my Java GUI and act on that event by receiving the path of the file(s) to upload it(them) to a server.
What kind of event is that? Where can I ...
5
votes
4answers
255 views
how do I make my application as fast as windows explorer for rendering files
I have a folder with a large amount of files inside of it. I want to be able to render each of my files as a button. And when I click on the button something will happen.
private void ...
5
votes
8answers
5k views
Programatically select multiple files in windows explorer
I can display and select a single file in windows explorer like this:
explorer.exe /select, "c:\path\to\file.txt"
However, I can't work out how to select more than one file. None of the ...
4
votes
1answer
439 views
Delphi Shell IExtractIcon usage and result
I am developing a listview baised on the shell. When trying to extract a shell icon/image... I try to extract thumbnail using IExtractImage if that fail I try to extract icons using IExtractIcon, to ...
4
votes
2answers
70 views
page content not displayed in Explorer
The beginnings of a site here:
http://qaa.miltonfame.org/
html and css pass validation tests
Page displays fine in all Mac browsers I have tried (Safari, Firefox, Camino)
Page displays fine in Windows ...
4
votes
1answer
2k views
How to use filegroupdescriptor to drag file to explorer c#
I would like to drag and drop an element of a listbox to explorer. When the drag and drop is started, I need to prepare the file on demand and save it to a memory stream.
Can you provide me with an ...
4
votes
5answers
143 views
Javascript and Windows
I noticed that if I have a .js file in windows explorer (not Internet Explorer, I'm meaning the folder explorer...) I can actually click on it and it will execute, giving error messages, like say ...
4
votes
2answers
573 views
How to I launch a ruby script from the command line by just its name?
On windows, I can run my ruby script like this:
> ruby myscript.rb
but I want to set things up so that I can just do this instead?..
> myscript.rb
How do I do this? I know it's possible ...
4
votes
9answers
6k views
Embedding a File Explorer instance in a WinForms app form
My (C#, .NET 3.5) app generates files and, in addition to raising events that can be caught and reacted to, I want to display the target folder to the user in a form. The file-list is being shown ...
3
votes
1answer
152 views
Is there a FREE file manager that fully supports Tortoise SVN (including the SVN details columns) in Windows 7?
Or alternatively, is there some other SVN client that has explorer ease of use but also supports the SVN details columns that are no longer available in Vista/Windows7?
I've looked briefly at things ...
3
votes
2answers
50 views
How do I reveal a file as “selected” in *nix from the command line?
Is there a semi-universal mechanism by which to reveal files as selected in various *nix window managers via the command line? For example, in Windows I can say the following:
explorer.exe ...
3
votes
1answer
185 views
How do I write a custom search provider for Windows Explorer search UI
I am working on a Windows Explorer Namespace Extension which is a virtual filesystem. With regards to this, I would like to support search from the search dialog available in Windows Explorer:
...
3
votes
2answers
233 views
Understanding Mercurial Branching
I'm learning mercurial and I went to commit some changes and I got the message along the lines of "new head created" -- though I could have sworn that I did an hg pull and an hg update prior to doing ...
3
votes
2answers
413 views
.NET Windows Explorer extension to browse a file like .zip?
I made a browser program for a archive type with the .mpq extension, which is highly used in Blizzard games.
It is like an explorer but only explores files inside MPQ archives.
Now, we all know how ...
3
votes
2answers
3k views
what for is microsoft document explorer 2008? [closed]
what for is microsoft document explorer 2008???
cant find any deep information in google, please help.
3
votes
4answers
1k views
3
votes
3answers
948 views
Programmatically selecting file in explorer
In my application I can programmatically open explorer and select a file using the following code:
void BrowseToFile(LPCTSTR filename)
{
CString strArgs;
strArgs = _T("/select,\"");
...
3
votes
1answer
196 views
why is Snowbird browser faster than Windows Explorer..?
I was wondering how such performance can be achieved on windows as I noticed snowberd is even faster than DOS "dir" command, even in mapped network drives...?
Any idea what algo/technology are used ...
3
votes
1answer
478 views
How can I use a meter-style progress bar?
In Vista/7, the Windows Explorer shell window makes use of a special kind of static progress bar to display hard drive space.
With default styles, this bar is blue colored and non-animated. It also ...
3
votes
3answers
234 views
Problem with Killing windows explorer?
I need to kill windows explorer's process (explorer.exe), for that
lets say i use a native NT method TerminateProcess
It works but the problem is that the explorer starts again, may be windows is ...
3
votes
5answers
6k views
html - how do I make a page load in a new tab in IE8?
What combination of html and IE8 settings get IE8 to open links in a new tab. Or can you not do this with IE8, and you only get the new tabs by manually selecting File-> new/duplicate tab?
My ...
3
votes
3answers
653 views
How to get the explorer right click menu in Winforms ListView?
I am using a Winforms ListView to show some files, but other than showing the files like explorer does, I want to have the same explorer right click menu when you get when you right click an item ...
3
votes
1answer
874 views
Open a folder and highlight a particular file with WPF
Is there a way to launch an Explorer window and highlight a file in that folder with WPF ? I've already tried the following :
Process ExplorerWindowProcess = new Process();
...
3
votes
1answer
428 views
Wix: How to create a desktop shortcut pointing to a virtual drive under Computer
I would like to add a shortcut on the desktop which points to a virtual drive mounted under "Computer". This drive doesn't have a letter associated with it. I've successfully added a link to an ...
3
votes
3answers
2k views
Integrating into Windows Explorer context menu
I want to write a small tool, that does the following:
When you right click on a file with a certain file-extension the Windows Explorer context menu shows an additional entry.
When you click this ...
3
votes
1answer
730 views
Interesting observation with IE memory management and javascript
In windows, when an application is minimised the OS frees up memory associated with application by placing the data within a page file. Other garbage collection may also execute.
In the case of ...
3
votes
4answers
625 views
Use Windows Explorer in .NET code?
Does anyone know if it's possible to use the bits and pieces of Windows Explorer in .NET code? That would be nice, for example, to write file management forms in other programs, and get that to look ...
3
votes
1answer
3k views
Rules for “Date Modified” of folders in Windows Explorer
How does Windows Explorer determine the "Date Modified" field for folders? [Aside: I know this is asking from an explorer-specific perspective, but the behaviour could be useful to coding search/sort ...
3
votes
2answers
4k views
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 ...
3
votes
7answers
2k views
How to programatically restart windows explorer process
I'm working on a windows shell extension, and unfortunately, when making changes to the DLL, I must restart windows explorer (since it keeps the DLL in memory).
I found this program from Dino ...
3
votes
3answers
2k views
How to launch the default (native) application for a given file from Java?
I am displaying a list of files; i.e. xls, doc, pdf, odt etc., in my Java application (Eclipse RCP). When the user clicks on the file, I want to launch the appropriate (according to what the OS ...
3
votes
4answers
534 views
How do you create a shortcut to a directory so that it opens in explorer
Better yet, how can I make My Computer always open in Explorer as well?
I usually make a shortcut to my programming directories on my quick launch bar, but I'd love for them to open in Explorer.
2
votes
4answers
72 views
Navigation bar not displaying well in IE6,7,8 but works on 9 and all other browsers
[www.tdeltd.net][1]
[1]: http://tdeltd.net is my site. The navigation bar is broken in all versions of IE except 9. All other browsers display the site properly. After two days of searching I am ...
2
votes
1answer
377 views
VB.Net - Open remote shared folder with credentials
I need to open a folder on a remote server with different credentials in a window (explorer.exe).
I managed to do it with no credentials (my credentials), but when I do it with another username and ...