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 中的 Dekstop 路径?
ENV['HOME'] + '/Desktop'应该适用于所有窗口。我不确定osx,linux经常没有桌面
ENV['HOME'] + '/Desktop'
您可以尝试 Dir.pwd 来获取当前路径。
http://ruby-doc.org/core-1.9.3/Dir.html#M002316
ENV['HOME']+'/Desktop' 应该适用于所有 Windows 和 OSX