Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Day 31 - File I/O Basics

📚 What You'll Learn Today

  • File and directory operations
  • File class methods
  • Basic file reading and writing
  • Exception handling for I/O

🎯 Key Concepts

  • File Class: Represents files and directories
  • I/O Streams: Data flow between program and files
  • Exception Handling: Managing I/O errors
  • File Operations: Create, delete, check existence

📁 Files in This Day

  1. FileIODemo.java - Example of file I/O operations

🚀 How to Run

  1. Compile: javac FileIODemo.java
  2. Run: java FileIODemo

💡 Exercises

  1. Create and delete files
  2. Check file properties

Next Day: Day 32 - Reading and Writing Files