Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 ruby 和鞋子为一些学生创建测试。我想知道如何让他们点击一个按钮,然后他们在文本框中的答案以文本文件格式发送到桌面。谢谢。
File.open('path/to/desktop/answers.txt', 'w') do |file| file.write('answers') end