Ruby文件操作如何移動(dòng)文件

小樊
81
2024-11-06 03:45:35

在Ruby中,可以使用File類的rename方法來(lái)移動(dòng)文件。這是一個(gè)簡(jiǎn)單的示例:

# 定義源文件和目標(biāo)文件的路徑
source_file = 'source.txt'
destination_file = 'destination.txt'

# 使用rename方法將源文件移動(dòng)到目標(biāo)文件路徑
File.rename(source_file, destination_file)

# 檢查文件是否已成功移動(dòng)
if File.exist?(destination_file)
  puts "文件已成功移動(dòng)"
else
  puts "文件移動(dòng)失敗"
end

在這個(gè)示例中,我們首先定義了源文件(source.txt)和目標(biāo)文件(destination.txt)的路徑。然后,我們使用File.rename方法將源文件移動(dòng)到目標(biāo)文件路徑。最后,我們使用File.exist?方法檢查文件是否已成功移動(dòng)。

0