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