Home »
Ruby Tutorial »
Ruby Programs
Ruby program to read entire text from the existing file
Last Updated : December 15, 2025
Problem Solution
In this program, we will open an existing file using the File class in read ("r") mode. Then we will read the entire data from the existing file using the read() method of the File class and print the result.
Program/Source Code
The source code to read the entire text from the existing file is given below. The given program is compiled and executed on Windows 10 Operating System successfully.
# Ruby program to read entire text
# from the existing file
# Open an existing file.
fobj = File.new("MyFile.txt", "r");
# Read entire data from existing file.
print "File Text: ",fobj.read();
# Close file object
fobj.close();
Output
File Text: Sample Text
Explanation
In the above program, we opened an existing file "MyFile.txt" by creating object fobj of the File class. Then we read the entire text data from the "MyFile.txt" file using the read() method of the File class and printed the data. After that, we closed the open file.
Ruby File Handling Programs »
Advertisement
Advertisement