×

Ruby Tutorial

Ruby Basics

Ruby Control Statements

Ruby Methods

Ruby Classes and Methods

Ruby Arrays

Ruby Sets

Ruby Strings

Ruby Classes & Objects

Ruby Hash

Ruby Tools

Ruby Functions

Ruby Built-in Functions

Misc.

Ruby Programs

Ruby program to check a specified file is exist or not

Last Updated : December 15, 2025

Problem Solution

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

Program/Source Code

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

# Ruby program to check a specified 
# file exists or not.

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

if (result == true)
	print ("File exists.\n");
else
	print ("File does not exist.\n");
end

Output

File exists.

Explanation

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

Ruby File Handling Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

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