https://github.com/karenpayneoregon/file-read-tips-vb
Working with files with VB.NET
https://github.com/karenpayneoregon/file-read-tips-vb
article chunking-files vb-net
Last synced: 3 months ago
JSON representation
Working with files with VB.NET
- Host: GitHub
- URL: https://github.com/karenpayneoregon/file-read-tips-vb
- Owner: karenpayneoregon
- Created: 2020-06-07T21:42:17.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-08T00:11:42.000Z (about 5 years ago)
- Last Synced: 2025-01-29T00:29:39.009Z (5 months ago)
- Topics: article, chunking-files, vb-net
- Language: Visual Basic .NET
- Homepage:
- Size: 5.33 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Working with files better
In this repository there are two demos
- [Using Windows-API-Code-Pack-1.1](https://github.com/aybe/Windows-API-Code-Pack-1.1) (installed using NuGet) to provide a modal dialog while reading a text file with a progress bar along with the ability to cancel the read operation.
- Chunking a larger file into smaller files (pure .NET Framework 4.7.2) which can help processing text files in smaller portions rather than loading a very large text file into memory all at once.### Important
- After loading this solution into Visual Studio perform a **restore NuGet packages** before a build/run.
- There is a post build event to create a folder under the application folder for chunking files.#### Microsoft TechNet article
[See article here](https://social.technet.microsoft.com/wiki/contents/articles/53922.reading-large-files-made-simple-vb-net.aspx)
**User interface**

**Chunking files**
