Q:

Ruby program to write text into the file

belongs to collection: Ruby File Handling Programs

0

In this program, we will create a file using the File class. Then we will write data into the created file using the syswrite() method of the File class and close the file.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to write text into the file is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to write text into the file

# Create a text file.
fobj = File.new("MyFile.txt", "w"); 

# Write data into file
fobj.syswrite("Sample Text");

# Close file object
fobj.close();  

puts "File created successfully";

Output:

File created successfully

Explanation:

In the above program, we created a file "MyFile.txt" by creating the object fobj of the File class. Then we write text data into the "MyFile.txt" file using the syswrite() method of the File class and close the opened file. After that, we printed the "File created successfully" message.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby program to read entire text from the existing... >>
<< Ruby program to create an empty file...