Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
540 views
in Technique[技术] by (71.8m points)

Most efficient way to find all exe files on disk using C#?

What is the most efficient way to find all exe files on disk using C#?

It will be done in background thread in program so disk usage should be as small as possible.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The link you provided is the most efficient way in C# (with .Net 4.0): Directory.EnumerateFiles Method

Prior versions of .Net had to use a slower method that caused memory issues on large drives, @hatchet showed a great example: Is there a faster way to scan through a directory recursively in .NET?

I wouldn't suggest using the TPL as Jon Skeet mentions here: Task Parallel Library for directory traversal

If you see the first comment in this MSDN link: Iterate File Directories with the Parallel Class I dont even think Microsoft had success with this TPL method either.

The other suggestion I have is using LogParser and you can use it with C#! Its a free Microsoft product but I'm not sure about re-dist permissions, I had to include it in my package separately last time I used it. It full on flys, faster than a speeding train!

As per @spender comment I found a Log Parser example that finds files dated 180 days and older, you could try it out and adapt it if its useful:

SELECT
    ContentPath, [Days (Old)], FileName, [Creation Date Time]
    USING creationtime AS [Creation Date Time],
    TO_DATE([Creation Date Time]) AS Cdate,
    SUB(TO_LOCALTIME(SYSTEM_TIMESTAMP()), Cdate) AS Days,
    DIV(TO_INT(Days),86400) As [Days (Old)],
    EXTRACT_PATH(TO_LOWERCASE(path)) AS ContentPath,
    TO_LOWERCASE(name) AS FileName
FROM %source% 
WHERE
  (attributes NOT LIKE 'D%')
AND
  ([Days (Old)] >= TO_INT('%day%'))
ORDER BY [Creation Date Time] DESC

%source% could be something like c:*.exe as shown in the argument c:emp*.*. Save the above as cc.sql, run it with the following syntax:

 C:TempToolsLogparser>LogParser.exe file:cc.sql?source="c:emp*.*"+day="180"  -i:FS -preserveLastAccTime -rtp:-1

EDIT

Thanks for the upvotes guys! I made this Event Analyser app in 2005 (before .net 2.0 was released) and since the Log Parser suggestion was so popular I thought I'd share the way you can use LogParser in .Net

The good folks over at http://visuallogparser.codeplex.com/ have provided us with the source code.

Open the VisualLogParser solution in VS2010, ignore the prompt about debugging, after the solution loads, F5, set the combo-box to FS (FileSystem), paste in this query and press go.

SELECT
? ? ContentPath, [Days (Old)], FileName, [Creation Date Time]
? ? USING creationtime AS [Creation Date Time],
? ? TO_DATE([Creation Date Time]) AS Cdate,
? ? SUB(TO_LOCALTIME(SYSTEM_TIMESTAMP()), Cdate) AS Days,
? ? DIV(TO_INT(Days),86400) As [Days (Old)],
? ? EXTRACT_PATH(TO_LOWERCASE(path)) AS ContentPath,
? ? TO_LOWERCASE(name) AS FileName
FROM 'c:*.exe'?
WHERE
? (attributes NOT LIKE 'D%')
AND
? ([Days (Old)] >= TO_INT('180'))
ORDER BY [Creation Date Time] DESC

At the same time you may wish run any other .Net application that searches directories and compare the results!!!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...