Tagged Questions
The file-search tag has no wiki summary.
11
votes
3answers
4k views
Recursive File Search in .net
I need to search a drive (C:, D: etc) for a partuicular file type (extension like .xml, .csv, .xls). How do I preform a recursive search to loop all directories and inner directories and return the ...
4
votes
3answers
100 views
How can I find the newest .pl file in a directory and all its subdirectories using Perl?
How can I scan an entire directory's contents, including its subdirectories' contents, and find the newest .pl file within them using Perl?
I want to build a sorted array/list of the full file paths ...
4
votes
2answers
309 views
Smart image search via Powershell
I am interested in file searching by custom properties. For example, I want to find all JPEG-images with certain dimensions. Something looks like
Get-ChildItem -Path C:\ -Filter *.jpg -Recursive | ...
3
votes
2answers
553 views
How to make eclipse “File Search” to also search inside source jars containig some text?
I am working on a project (Java) in which I have many jars which have source-jar file attached.
Is there any way to make the eclipse "File Search" search inside the Java files ((& txt, xml etc ...
2
votes
3answers
1k views
Recursive File Search (PHP)
I'm trying to return the files in a specified directory using a recursive search.
I successfully achieved this, however I want to add a few lines of code that will allow me to specify certain ...
2
votes
5answers
5k views
Recursive file search using C++ MFC?
What is the cleanest way to recursively search for files using C++ and MFC?
EDIT: Do any of these solutions offer the ability to use multiple filters through one pass? I guess with CFileFind I could ...
1
vote
3answers
68 views
function of searching a string from a file
This is some code I wrote to check a string's presence in a file:
bool aviasm::in1(string s)
{
ifstream in("optab1.txt",ios::in);//opening the optab
//cout<<"entered in1 func"<<endl;
char ...
1
vote
1answer
578 views
How to get the last modified file in a directory using VBA in Excel 2010
Im looking for a way to do this in Excel 2010 using VBA.
It used to be possible in Excel 2003 using the Application.FileSearch method, but this has be depreciated. (see below)
Dim sFileName As ...
1
vote
2answers
211 views
Vim: Search in Open Buffers
One features I like with Visual Studio is the ability to search in open files only. For example, if I recently did changes to some files and I would like to trace those changes, I might search for a ...
1
vote
2answers
633 views
Android finding files on the SDCard
I'm working on a MP3 application in which I'd like to index the files on my SDCard. What is the best way to do it?
My Idea. Search for files when the application is started for the first time and ...
1
vote
1answer
237 views
Vim: Search for Files with Autocomplete
I found this plugin:
http://vim.wikia.com/wiki/Find_files_in_subdirectories
to be really useful to find a file(s) using a wild card. For example, I can execute
:Find edit*.php
and it will ...
0
votes
0answers
34 views
How to create search function for PDF/DOC content on a website?
I want to create a search function which returns matching sections of information from files like .pdf and .doc. These files would already be on the site, the visitors will just select the files to ...
0
votes
2answers
37 views
BAT script search for a particular type of file and execute a command
I want to search a particular file type(.plt) and then I want to execute a command line command(Eg. Change file type). I am working in windows 7.
Can I write a .bat script to do this issue?
Please ...
0
votes
2answers
197 views
How to resolve Buffer overflow while reading large text files over 2GB?
I am trying to read a large text file in JScript to search for a string, but encountering overflow exception. I wrote the following code.
var ForReading = 1;
var TriStateFalse = 0;
var strFileData;
...
0
votes
3answers
337 views
Searching for files containing specified strings in C#
I am trying to write a WinForms app, that allows searching for a files, that contain a string written in textbox ( press WIN+F and you understand ;) )
in this app, there is a list of files and ...
0
votes
6answers
235 views
How can I increase performance on this MFC code?
I conduct a file search and there is exception list for directories, the problem is below code recursively iterates through all files on hard drives. It works but it is slow. Therefore, I need help to ...
0
votes
2answers
115 views
solution to search into files (in lamp)
i have site that the user upload files (PDF,WORD,POWER POINT ....)
and they want to have the ability to search word in the files,
how can i do it ?