explorer Questions
5
I don't need any kind of interface. I just need the program to be an .exe file that opens a directory (eg. F:).
What kind of template would I use in C#? Would something other than Visual Studio wo...
13
Solved
I'm trying to open a folder in explorer with a file selected.
The following code produces a file not found exception:
System.Diagnostics.Process.Start(
"explorer.exe /select,"
+ listView1.Sel...
9
Solved
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 ...
Obliquely asked 13/8, 2008 at 0:35
4
Solved
Situation
I have a 3rd party GUI application that accepts multiple files via CLI,
for example:
MyProgram.exe "file1" "file2"
Then all the files are loaded at once into the same instance of t...
4
Solved
I want to open a specified path in vscode in windows 10 and I know there is a command that do this:
path> code .
but my problem is, how can I open a specified path in cmd Quickly even from explo...
Flyback asked 30/6, 2020 at 10:12
11
Solved
In Python, how do I jump to a file in the Windows Explorer? I found a solution for jumping to folders:
import subprocess
subprocess.Popen('explorer "C:\path\of\folder"')
but I have no solution f...
8
Solved
I have a little question: How can I remove the "git bash here" and "git gui here" from my menu context in my Documents directory?
I have tried:
Reinstalling the Git-2.15.0-64-b...
Waldheim asked 2/11, 2017 at 20:52
13
Solved
I'm sure this must be possible, but I can't find out how to do it.
Any clues?
Retard asked 26/11, 2008 at 12:19
8
Solved
I am now using java Desktop API to manipulate file explorer.
I know how to open the file explorer but I don't know how to open it and highlight the specified file.
As we using the Chrome, after d...
7
There is a need to quickly open the current directory from the command prompt.
I know that there is a command explorer.
But to enter the full path to the directory is very inconvenient.
For exam...
Crabstick asked 2/10, 2015 at 11:56
1
Solved
In a project we have a "hidden" folder (a folder which name starts with a '.') on the device. Accessing it from Code is no Problem, but in AndroidStudios "Device File Explorer" I cannot find an opt...
Hofmann asked 8/7, 2019 at 12:55
4
I wish to do what the title says.
Part Solution:
For example in Windows you can use the code below to open a file in the default explorer and highlight it.
(although it needs modification for file...
2
I am new to Visual Studio Code. I have configured my environment for C/C++ development and everything is working.
However, when starting VS Code, I receive these notifications in the bottom right c...
Ardy asked 25/3, 2022 at 12:39
6
I have a form in a Delphi project. There is a button on the form. When the user clicks the button, I want it to open Windows Explorer.
What code will I need to achieve this?
19
Solved
I've searched for 2 days and can't find anything. I find things that are close, but not what I need.
I got a new computer recently and copied all of my projects over to my new computer.
I opened ...
1
I am using Jasmine Test explorer for angular typescript. When we create a angular component, the *spec.ts also created, so the spec.ts files are scattered all over the project.
is my spec_dir valu...
Golter asked 8/1, 2020 at 18:19
10
Solved
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 Espo...
Evolutionary asked 19/2, 2009 at 13:54
1
Solved
I'm looking for a extension or a settings in VScode to see a "variable explorer" like in Spyder (as you can see in the picture) when we can see every objects (and not only the variable !)...
Lemus asked 27/7, 2021 at 16:18
2
Solved
I was wondering if there was a way to open a folder location via node js. I found this library but it only opens files and URLs.
Edit: Fuser's answer put me on the right track and I found this:
...
Hexangular asked 28/8, 2015 at 18:6
2
My Problem
I am currently developing an Android application with Android Studio.
To choose a file the user clicks on a button, the explorer opens and he can select a file.
For this process I used a...
Monadism asked 11/9, 2020 at 12:26
3
Solved
How do you open a path in explorer by code in c++. I googled and couldn't find any thing but systems commands to do this, however, i dont want it to block or show the console window.
6
Solved
is it possible to open a explorer window from powershell and store the path selected in the explorer, to a variable?
to open explorer window from powershell
PS C:> explorer
Dote asked 10/7, 2012 at 11:44
2
Solved
Is there a way to sort files by svn status in Windows 10 explorer?
I'm using TortoiseSVN.
Wanda asked 16/6, 2017 at 13:52
1
Solved
i'm learning python, and i'm bit stuck...
This is my code:
# TESTING FILE
import os
import subprocess
from pathlib import Path
# VAR
name = 'my_random_dir'
# Main
path2 = str(Path(__file__).par...
Predicate asked 17/10, 2020 at 11:37
3
Solved
I am writing the following code to close all explorer windows with PowerShell:
(New-Object -comObject Shell.Application).Windows() |
? { $_.FullName -ne $null} |
? { $_.FullName.toLower().Endswi...
Sleepwalk asked 19/7, 2013 at 19:41
1 Next >
© 2022 - 2024 — McMap. All rights reserved.