使用File.new创建的文件实际上存储在Ruby中的哪个位置?

时间:2013-03-24 23:25:40

标签: ruby

我从Ruby脚本中创建文件并向其中添加内容。但是我创建的这些文件存储在哪里?

我对此很新,抱歉!

1 个答案:

答案 0 :(得分:2)

文件是在您指定的任何位置创建的。例如:

f = File.new("another_test.txt","w+")

将在当前工作目录中创建该文件。您可以指定路径以及文件名。例如:

 f = File.new("~/Desktop/another_test.txt","w+") # will create the file on the desktop.

有关详细信息,请查看File documentation.

<强>更新: 包括亩太短的纠正。