15,792,657 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Python questions
View PHP questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by dabbourabd (Top 3 by date)
dabbourabd
7-Dec-13 12:52pm
View
thank you for replay
in my code the final value is function to get hash code for the file
and that not my problem
my question is how can I grouping items according to hash code????
var items = from f in Files_pathes_hash_Dup
select new ListViewItem(
new string[] {
new System.IO.FileInfo(f).Name, // Name
new System.IO.FileInfo(f).FullName, // Directory
new System.IO.FileInfo(f).CreationTime.ToString(), // Date Modified
new System.IO.FileInfo(f).Length.ToString(),
new System.IO.FileInfo(f).Extension,
get_hash(f)});
listView_Files.BeginUpdate();
listView_Files.Items.AddRange(items.ToArray());
listView_Files.EndUpdate();
dabbourabd
17-Apr-13 7:01am
View
first thank you for replay
another question if i have
List<string>[] All_files = new List<string>[2];
All_files[0] = new List<string>();//name
All_files[1] = new List<string>();//fullname
how can i sort this list according to All_files[0]
dabbourabd
5-Apr-13 16:49pm
View
thank for replaying
now i using this code
Collapse | Copy Code
List<string> DirSearch(string sDir)
{
List<string> filesPathes = new List<string>();
try
{
foreach (string f in Directory.GetFiles(sDir))
{
filesPathes.Add(f);
All_files[1].Add(f);
All_files[0].Add(f.Substring(f.LastIndexOf("\\")+1));
txtcurrentfile.Text = f;
}
foreach (string d in Directory.GetDirectories(sDir))
{
filesPathes.AddRange(DirSearch(d));
}
}
catch
{
}
return filesPathes;
}
but my problem is time because i am talking about 300000 files
so i takes about 2 minutes to get all files list
but i am trying to reduce the time by using
Collapse | Copy Code
List<string> enumeratedFiles = Directory.EnumerateFiles(@"d:\", "*.*", SearchOption.AllDirectories)
.Where(str => str.Contains(".")).AsParallel().ToList();
because its much faster so i am trying to skip error like i said before