Find all folders with specific files in them?Windows Search Not Indexing Contents of Text Files With .SQL...
What does an unprocessed RAW file look like?
Why does magnet wire need to be insulated?
Boss asked me to sign a resignation paper without a date on it along with my new contract
How can I play a serial killer in a party of good PCs?
How do you voice extended chords?
How can the probability of a fumble decrease linearly with more dice?
Prioritising polygons in QGIS
How does Leonard in "Memento" remember reading and writing?
Potential client has a problematic employee I can't work with
Why zero tolerance on nudity in space?
Is there a verb that means to inject with poison?
False written accusations not made public - is there law to cover this?
How can 若い時 and ずっと work in this sentence?
Sprint is 2 week and 40-stories
Subsurf on a crown. How can I smooth some edges and keep others sharp?
Could an Apollo mission be possible if Moon would be Earth like?
Book where a space ship journeys to the center of the galaxy to find all the stars had gone supernova
Can 5 Aarakocra PC summon an Air Elemental?
Coworker asking me to not bring cakes due to self control issue. What should I do?
Does Skippy chunky peanut butter contain trans fat?
Why do we have to make "peinlich" start with a capital letter and also end with -s in this sentence?
Is a new boolean field better than null reference when a value can be meaningfully absent?
The probability of reaching the absorbing states from a particular transient state?
What is the difference between "...", '...', $'...', and $"..." quotes?
Find all folders with specific files in them?
Windows Search Not Indexing Contents of Text Files With .SQL ExtensionUsing Windows Explorer, how to find file names starting with a dot (period), in 7 or Vista?Can I do a “one-time” file content search in Windows Server 2008 without adding the folder to the index?How to find video files with a certain framewidthMaking a mounted volume searchableWindows 7 search does not return results from indexed foldersFiles and folders disappeared from my desktopWindows 7 - delete all files+empty folders with with specific extension recursivelyHow do I find files or folders with a certain name length?Search for files with a specific file extension in Windows 7
This is on Windows-7.
I need to find all folders with specific files in them and list them preferably in Explorer. Is it at all possible, I seem to have hard time figuring this. This probably can be done from cmd or powershell, but I would prefer to have it done from within Explorer.
The search criteria is simply "all folders containing files with extension .ini".
windows-7 windows-search
bumped to the homepage by Community♦ 15 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
This is on Windows-7.
I need to find all folders with specific files in them and list them preferably in Explorer. Is it at all possible, I seem to have hard time figuring this. This probably can be done from cmd or powershell, but I would prefer to have it done from within Explorer.
The search criteria is simply "all folders containing files with extension .ini".
windows-7 windows-search
bumped to the homepage by Community♦ 15 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
This is on Windows-7.
I need to find all folders with specific files in them and list them preferably in Explorer. Is it at all possible, I seem to have hard time figuring this. This probably can be done from cmd or powershell, but I would prefer to have it done from within Explorer.
The search criteria is simply "all folders containing files with extension .ini".
windows-7 windows-search
This is on Windows-7.
I need to find all folders with specific files in them and list them preferably in Explorer. Is it at all possible, I seem to have hard time figuring this. This probably can be done from cmd or powershell, but I would prefer to have it done from within Explorer.
The search criteria is simply "all folders containing files with extension .ini".
windows-7 windows-search
windows-7 windows-search
edited May 8 '12 at 6:04
Sathyajith Bhat♦
52.9k29156252
52.9k29156252
asked May 7 '12 at 16:56
Damien KDamien K
112
112
bumped to the homepage by Community♦ 15 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 15 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
- Open Computer (aka My Computer)
- Navigate to c:folder
- In the upper right, you will see a search box, with gray wording: Search folder
- input: *.ini and press enter
You will now see of all ini files in this directory and it's subdirectories.
Well, this far I got myself, but this gives me the list of files. What I need is a list of directories containing those files in search criteria.
– Damien K
May 7 '12 at 17:54
add a comment |
You might be able to solve your problem using PowerShell. I am not home at the moment and have no access to PowerShell, so I can check this solution inspired by this page at a later time only.
dir -recurse | ?{$_.name -match “^*.ini$”} | sort name | ft directory
I can check up on the correctness of the answer later.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f421626%2ffind-all-folders-with-specific-files-in-them%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
- Open Computer (aka My Computer)
- Navigate to c:folder
- In the upper right, you will see a search box, with gray wording: Search folder
- input: *.ini and press enter
You will now see of all ini files in this directory and it's subdirectories.
Well, this far I got myself, but this gives me the list of files. What I need is a list of directories containing those files in search criteria.
– Damien K
May 7 '12 at 17:54
add a comment |
- Open Computer (aka My Computer)
- Navigate to c:folder
- In the upper right, you will see a search box, with gray wording: Search folder
- input: *.ini and press enter
You will now see of all ini files in this directory and it's subdirectories.
Well, this far I got myself, but this gives me the list of files. What I need is a list of directories containing those files in search criteria.
– Damien K
May 7 '12 at 17:54
add a comment |
- Open Computer (aka My Computer)
- Navigate to c:folder
- In the upper right, you will see a search box, with gray wording: Search folder
- input: *.ini and press enter
You will now see of all ini files in this directory and it's subdirectories.
- Open Computer (aka My Computer)
- Navigate to c:folder
- In the upper right, you will see a search box, with gray wording: Search folder
- input: *.ini and press enter
You will now see of all ini files in this directory and it's subdirectories.
answered May 7 '12 at 17:16
jftugajftuga
2,66211423
2,66211423
Well, this far I got myself, but this gives me the list of files. What I need is a list of directories containing those files in search criteria.
– Damien K
May 7 '12 at 17:54
add a comment |
Well, this far I got myself, but this gives me the list of files. What I need is a list of directories containing those files in search criteria.
– Damien K
May 7 '12 at 17:54
Well, this far I got myself, but this gives me the list of files. What I need is a list of directories containing those files in search criteria.
– Damien K
May 7 '12 at 17:54
Well, this far I got myself, but this gives me the list of files. What I need is a list of directories containing those files in search criteria.
– Damien K
May 7 '12 at 17:54
add a comment |
You might be able to solve your problem using PowerShell. I am not home at the moment and have no access to PowerShell, so I can check this solution inspired by this page at a later time only.
dir -recurse | ?{$_.name -match “^*.ini$”} | sort name | ft directory
I can check up on the correctness of the answer later.
add a comment |
You might be able to solve your problem using PowerShell. I am not home at the moment and have no access to PowerShell, so I can check this solution inspired by this page at a later time only.
dir -recurse | ?{$_.name -match “^*.ini$”} | sort name | ft directory
I can check up on the correctness of the answer later.
add a comment |
You might be able to solve your problem using PowerShell. I am not home at the moment and have no access to PowerShell, so I can check this solution inspired by this page at a later time only.
dir -recurse | ?{$_.name -match “^*.ini$”} | sort name | ft directory
I can check up on the correctness of the answer later.
You might be able to solve your problem using PowerShell. I am not home at the moment and have no access to PowerShell, so I can check this solution inspired by this page at a later time only.
dir -recurse | ?{$_.name -match “^*.ini$”} | sort name | ft directory
I can check up on the correctness of the answer later.
answered May 15 '12 at 13:29
AndreasAndreas
45427
45427
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f421626%2ffind-all-folders-with-specific-files-in-them%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown