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。我不知道用于存储文件的 sdcard 的路径。
我想路径需要进入这里
pdf.save_as(file_location)
任何人都可以建议路径吗?
您可以使用/sdcard/将文件存储到 Android 的 sdcard
/sdcard/
file_location = File.join('/sdcard/','My.pdf') pdf.save_as(file_location)