Q:

Ruby program to rename a specified file by another name

belongs to collection: Ruby File Handling Programs

0

In this program, we will rename a specified file by another name using the File.rename() method and print the appropriate message.

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 rename a specified file by another name is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to rename a specified file 
# by another name

result = File.rename("MyFile.txt", "NewFile.txt");

if (result == 0)
	print ("File renamed successfully\n");
else
	print ("File rename failed\n");
end

Output:

File renamed successfully

Explanation:

In the above program, we renamed "MyFile.txt" file by "NewFile.txt" name using File.rename(). The File.rename() method returns 0 when file renamed successfully. Then we printed the appropriate message.

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

total answers (1)

Ruby program to check a specified file is exist or... >>
<< Ruby program to open a file in append mode, open i...