Click here to Skip to main content
15,913,836 members
Home / Discussions / C#
   

C#

 
GeneralRe: Recursive directory search Pin
electriac16-Jan-07 0:21
electriac16-Jan-07 0:21 
GeneralRe: Recursive directory search Pin
Luc Pattyn16-Jan-07 1:14
sitebuilderLuc Pattyn16-Jan-07 1:14 
GeneralRe: Recursive directory search Pin
electriac16-Jan-07 1:31
electriac16-Jan-07 1:31 
GeneralRe: Recursive directory search Pin
Luc Pattyn16-Jan-07 1:31
sitebuilderLuc Pattyn16-Jan-07 1:31 
GeneralRe: Recursive directory search Pin
electriac16-Jan-07 1:36
electriac16-Jan-07 1:36 
GeneralRe: Recursive directory search Pin
Luc Pattyn16-Jan-07 2:20
sitebuilderLuc Pattyn16-Jan-07 2:20 
GeneralRe: Recursive directory search Pin
Luc Pattyn16-Jan-07 2:46
sitebuilderLuc Pattyn16-Jan-07 2:46 
AnswerRe: Recursive directory search Pin
davidc2p16-Jan-07 6:03
davidc2p16-Jan-07 6:03 
Just another idea of implementation, not the best i'm afraid, cause it is slow to run, but maybe the most accurate since you require no specific programming. Sorry i only have a sample in VBA code, but with it you can compare your result and maybe determine where the error is:

<br />
    With Application.FileSearch<br />
      .NewSearch<br />
      .LookIn = "c:\temp"<br />
      .Filename = "*.txt"<br />
      .MatchTextExactly = True<br />
      .SearchSubFolders = True 'look in sub folders<br />
     If .Execute > 0 Then<br />
        For i = 1 To .FoundFiles.Count<br />
            'do something with each file<br />
        next<br />
      end if<br />


David Domingues at webrickco@gmail.com. Feel free to visit http://webrick.athost.net/index.php

GeneralRe: Recursive directory search Pin
electriac16-Jan-07 9:32
electriac16-Jan-07 9:32 
GeneralRe: Recursive directory search Pin
Luc Pattyn16-Jan-07 10:12
sitebuilderLuc Pattyn16-Jan-07 10:12 
GeneralRe: Recursive directory search [modified] Pin
electriac12-Feb-07 1:57
electriac12-Feb-07 1:57 
Questionhow to import a dll in Windows Service Pin
ramyasangeet15-Jan-07 19:35
ramyasangeet15-Jan-07 19:35 
QuestionSingle web form project Pin
Mohammad Daba'an15-Jan-07 19:35
Mohammad Daba'an15-Jan-07 19:35 
AnswerRe: Single web form project Pin
Christian Graus15-Jan-07 21:44
protectorChristian Graus15-Jan-07 21:44 
GeneralRe: Single web form project Pin
davidc2p16-Jan-07 6:06
davidc2p16-Jan-07 6:06 
GeneralRe: Single web form project Pin
Mohammad Daba'an16-Jan-07 19:56
Mohammad Daba'an16-Jan-07 19:56 
GeneralRe: Single web form project Pin
Christian Graus16-Jan-07 20:12
protectorChristian Graus16-Jan-07 20:12 
GeneralRe: Single web form project Pin
Mohammad Daba'an16-Jan-07 20:20
Mohammad Daba'an16-Jan-07 20:20 
GeneralRe: Single web form project Pin
Christian Graus16-Jan-07 20:31
protectorChristian Graus16-Jan-07 20:31 
QuestionDate Time Picker and Queries Pin
L Viljoen15-Jan-07 19:20
professionalL Viljoen15-Jan-07 19:20 
AnswerRe: Date Time Picker and Queries Pin
Christian Graus15-Jan-07 21:44
protectorChristian Graus15-Jan-07 21:44 
QuestionRe: Date Time Picker and Queries Pin
L Viljoen15-Jan-07 22:30
professionalL Viljoen15-Jan-07 22:30 
QuestionString / Directory Location Question Pin
Planker15-Jan-07 19:17
Planker15-Jan-07 19:17 
AnswerRe: String / Directory Location Question Pin
Planker15-Jan-07 19:46
Planker15-Jan-07 19:46 
AnswerRe: String / Directory Location Question Pin
Christian Graus15-Jan-07 21:49
protectorChristian Graus15-Jan-07 21:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.