Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
The Modern C# Challenge

You're reading from   The Modern C# Challenge Become an expert C# programmer by solving interesting programming problems

Arrow left icon
Product type Book
Published in Oct 2018
Publisher Packt
ISBN-13 9781789535426
Pages 362 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Rod Stephens Rod Stephens
Author Profile Icon Rod Stephens
Rod Stephens
Arrow right icon
View More author details
Toc

Table of Contents (17) Chapters Close

Title Page
Copyright and Credits
Dedication
Packt Upsell
Contributors
Preface
1. Mathematics FREE CHAPTER 2. Geometry 3. Dates and Times 4. Randomization 5. Strings 6. Files and Directories 7. Advanced C# and .NET Features 8. Simulations 9. Cryptography 1. Other Books You May Enjoy Index

Solutions


The following sections describe solutions to the preceding problems. You can download the example solutions to see additional details and to experiment with the programs at https://github.com/PacktPublishing/The-Modern-CSharp-Challenge/tree/master/Chapter07.

73. Directory size, LINQ style

Both this solution and Solution 65. Directory size, use the DirectoryInfo class's GetFiles method to make an array holding FileInfo objects that represent the files contained within the directory. The previous solution then used the following code to add the files' sizes:

// Add the file sizes.
long size = 0;
foreach (FileInfo fileinfo in fileinfos) size += fileinfo.Length;
return size;

This code loops through FileInfo objects and adds their file lengths to the size variable.

The new SizeLINQ extension method uses the following code to perform the same task:

// Add the file sizes.
var sizeQuery =
    from FileInfo fileinfo in fileinfos
    select fileinfo.Length;
return sizeQuery.Sum();

This version...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime