The source code to open a file in write-only mode is given below. The given program is compiled and executed on Windows 10 Operating System successfully.
# Ruby program to open a file in
# write-only mode
# Open an existing file.
fobj = File.new("MyFile.txt", "w");
print "File opened in write-only mode.\n";
# Write data into file
fobj.syswrite("Hello World\n");
# Close file object
fobj.close();
Output:
File opened in write-only mode.
Explanation:
In the above program, we opened a file "MyFile.txt" in write-only mode ('w') by creating object fobj of the File class. Then we closed the opened file using the close() method.
Program/Source Code:
The source code to open a file in write-only mode is given below. The given program is compiled and executed on Windows 10 Operating System successfully.
Output:
Explanation:
In the above program, we opened a file "MyFile.txt" in write-only mode ('w') by creating object fobj of the File class. Then we closed the opened file using the close() method.
need an explanation for this answer? contact us directly to get an explanation for this answer