Ruby program to check a file has writable permission or not

Ruby Example: Write a program to check a file has writable permission or not.
Submitted by Nidhi, on February 12, 2022

Problem Solution:

In this program, we will check a specified file has writable permission or not using the File.readable?() method and print the appropriate message.

Program/Source Code:

The source code to check a file has writable permission or not is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to check a file has 
# writable permission or not

result = File.writable?("MyFile.txt");

if (result == true)
  print ("File has writable permission.\n");
else
  print ("File has not writable permission.\n");
end

Output:

File has writable permission.

Explanation:

In the above program, we checked the "MyFile.txt" file has writable permission or not using File.writable?() method and printed appropriate message.

Ruby File Handling Programs »




Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.