在Ruby中,可以使用File
类的rename
方法来移动文件。这是一个简单的示例:
# 定义源文件和目标文件的路径
source_file = 'source.txt'
destination_file = 'destination.txt'
# 使用rename方法将源文件移动到目标文件路径
File.rename(source_file, destination_file)
# 检查文件是否已成功移动
if File.exist?(destination_file)
puts "文件已成功移动"
else
puts "文件移动失败"
end
在这个示例中,我们首先定义了源文件(source.txt
)和目标文件(destination.txt
)的路径。然后,我们使用File.rename
方法将源文件移动到目标文件路径。最后,我们使用File.exist?
方法检查文件是否已成功移动。