riku
2025-10-30 e9aa93f381afcf9f9cf0c39f2b9e32375ed49528
app/src/main/java/cn/flightfeather/thirdappmodule/module/base/BaseTakePicActivity.kt
@@ -74,6 +74,9 @@
                    } else {
                        val newFile = File(Environment.getExternalStorageDirectory(), "FlightFeather/Temp/" + UUIDGenerator.generateUUID(4) + ".jpg")
                        try {
                            if (!newFile.parentFile.exists()) {
                                newFile.parentFile.mkdirs()
                            }
                            FileUtil.copyFile(oldFile, newFile)
                            pathTempList.add(Pair(newFile, true))
                        } catch (e: IOException) {