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.
理論上の質問:ディレクトリDir.mkdir('/ test')を作成している場合、このディレクトリは/ app/testまたは/public/ testとして作成されますか?
test絶対パスを指定しているため、ファイルシステムのルートパス()の下に作成され/ます(ほとんどの場合、アクセス許可の問題が原因で失敗します)。
test
/
Dir.mkdir('app/test')またはをDir.mkdir('public/test')それぞれ使用します。
Dir.mkdir('app/test')
Dir.mkdir('public/test')