Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/isensee-bastian/item-store
Tutorial code for my video Working with Files in Golang - Simple Command Line Tool
https://github.com/isensee-bastian/item-store
basic-programming beginner-tutorial-series constants files golang learn-to-code switch-case tutorial youtube
Last synced: 26 days ago
JSON representation
Tutorial code for my video Working with Files in Golang - Simple Command Line Tool
- Host: GitHub
- URL: https://github.com/isensee-bastian/item-store
- Owner: isensee-bastian
- License: mit
- Created: 2022-03-27T21:16:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-03-27T21:28:13.000Z (over 2 years ago)
- Last Synced: 2024-09-29T03:40:11.724Z (about 1 month ago)
- Topics: basic-programming, beginner-tutorial-series, constants, files, golang, learn-to-code, switch-case, tutorial, youtube
- Language: Go
- Homepage: https://youtu.be/lOCo4AfSF-U
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# File IO
* Command line arguments
* Constants
* Switch case
* Exiting the program (return code, error handling)
* Opening files (for appending, flags, file modes, resource cleanup with defer)
* Reading from files
* Writing to files (appending)
* Using io and bufio packages for higher level reading / writing
* Truncate and seek for rewriting a file