Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / file-system

File System

file-system

Great Reads

by Sergeant Kolja
This is an alternative for "Memory leak detection for WinCE".
by Ian Shlasko
Unless I'm misreading your code on CodePlex, it looks like your utility loads in the entire file every time it changes. That might be fine for tiny files, but it would be a huge performance hit for larger ones (a few megs, for example).Why not do it a bit more simply?using (FileStream str...
by Paw Møller
Implementing a simple file system as a file.

Latest Articles

by Sergeant Kolja
This is an alternative for "Memory leak detection for WinCE".
by Ian Shlasko
Unless I'm misreading your code on CodePlex, it looks like your utility loads in the entire file every time it changes. That might be fine for tiny files, but it would be a huge performance hit for larger ones (a few megs, for example).Why not do it a bit more simply?using (FileStream str...
by Paw Møller
Implementing a simple file system as a file.

All Articles

Sort by Score

file-system 

by Brian C Hart
This is a guide, written at an intermediate level, to performing high-speed search and replace operations across thousands of files in C# using advanced techniques such as memory-mapped files, asynchronous processing, and user-friendly interfaces with modal progress dialogs.