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.
アプリケーションで生成している pdf を保存する必要があります。ファイルを保存するSDカードのパスがわかりません。
パスはここに入る必要があると思います
pdf.save_as(file_location)
誰でもパスを提案できますか?
/sdcard/AndroidのSDカードにファイルを保存するために使用できます
/sdcard/
file_location = File.join('/sdcard/','My.pdf') pdf.save_as(file_location)