mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-26 11:34:18 +01:00
parent
0a164af12e
commit
df60fd91a8
@ -5,7 +5,6 @@
|
|||||||
package io.github.lime3ds.android.fragments
|
package io.github.lime3ds.android.fragments
|
||||||
|
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.net.Uri
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.View
|
import android.view.View
|
||||||
@ -160,7 +159,7 @@ class HomeSettingsFragment : Fragment() {
|
|||||||
R.string.select_lime3ds_user_folder,
|
R.string.select_lime3ds_user_folder,
|
||||||
R.string.select_lime3ds_user_folder_home_description,
|
R.string.select_lime3ds_user_folder_home_description,
|
||||||
R.drawable.ic_home,
|
R.drawable.ic_home,
|
||||||
{ mainActivity?.openLime3DSDirectory?.launch(Uri.parse(null)) },
|
{ mainActivity?.openLime3DSDirectory?.launch(null) },
|
||||||
details = homeViewModel.userDir
|
details = homeViewModel.userDir
|
||||||
),
|
),
|
||||||
HomeSetting(
|
HomeSetting(
|
||||||
|
@ -60,7 +60,7 @@ class Lime3DSDirectoryDialogFragment : DialogFragment() {
|
|||||||
}
|
}
|
||||||
.setNegativeButton(android.R.string.cancel) { _: DialogInterface?, _: Int ->
|
.setNegativeButton(android.R.string.cancel) { _: DialogInterface?, _: Int ->
|
||||||
if (!PermissionsHandler.hasWriteAccess(requireContext())) {
|
if (!PermissionsHandler.hasWriteAccess(requireContext())) {
|
||||||
(requireActivity() as MainActivity)?.openLime3DSDirectory?.launch(Uri.parse(null))
|
(requireActivity() as MainActivity)?.openLime3DSDirectory?.launch(null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.show()
|
.show()
|
||||||
|
@ -6,7 +6,6 @@ package io.github.lime3ds.android.fragments
|
|||||||
|
|
||||||
import android.app.Dialog
|
import android.app.Dialog
|
||||||
import android.content.DialogInterface
|
import android.content.DialogInterface
|
||||||
import android.net.Uri
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import androidx.fragment.app.DialogFragment
|
import androidx.fragment.app.DialogFragment
|
||||||
import androidx.fragment.app.FragmentActivity
|
import androidx.fragment.app.FragmentActivity
|
||||||
@ -27,7 +26,7 @@ class SelectUserDirectoryDialogFragment : DialogFragment() {
|
|||||||
.setTitle(R.string.select_lime3ds_user_folder)
|
.setTitle(R.string.select_lime3ds_user_folder)
|
||||||
.setMessage(R.string.cannot_skip_directory_description)
|
.setMessage(R.string.cannot_skip_directory_description)
|
||||||
.setPositiveButton(android.R.string.ok) { _: DialogInterface, _: Int ->
|
.setPositiveButton(android.R.string.ok) { _: DialogInterface, _: Int ->
|
||||||
mainActivity?.openLime3DSDirectory?.launch(Uri.parse(null))
|
mainActivity?.openLime3DSDirectory?.launch(null)
|
||||||
}
|
}
|
||||||
.show()
|
.show()
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// Copyright Citra Emulator Project / Lime3DS Emulator Project
|
// Copyright 2023 Citra Emulator Project
|
||||||
// Licensed under GPLv2 or any later version
|
// Licensed under GPLv2 or any later version
|
||||||
// Refer to the license.txt file included.
|
// Refer to the license.txt file included.
|
||||||
|
|
||||||
@ -16,7 +16,6 @@ import io.github.lime3ds.android.LimeApplication
|
|||||||
import io.github.lime3ds.android.model.CheapDocument
|
import io.github.lime3ds.android.model.CheapDocument
|
||||||
import java.io.BufferedInputStream
|
import java.io.BufferedInputStream
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import java.io.FileNotFoundException
|
|
||||||
import java.io.FileOutputStream
|
import java.io.FileOutputStream
|
||||||
import java.io.IOException
|
import java.io.IOException
|
||||||
import java.io.InputStream
|
import java.io.InputStream
|
||||||
@ -101,21 +100,18 @@ object FileUtil {
|
|||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun openContentUri(path: String, openMode: String): Int {
|
fun openContentUri(path: String, openMode: String): Int {
|
||||||
try {
|
try {
|
||||||
val uri = Uri.parse(path)
|
context
|
||||||
context.contentResolver.openFileDescriptor(uri, openMode)?.use { parcelFileDescriptor ->
|
.contentResolver
|
||||||
return parcelFileDescriptor.detachFd()
|
.openFileDescriptor(Uri.parse(path), openMode)
|
||||||
} ?: run {
|
.use { parcelFileDescriptor ->
|
||||||
|
if (parcelFileDescriptor == null) {
|
||||||
Log.error("[FileUtil]: Cannot get the file descriptor from uri: $path")
|
Log.error("[FileUtil]: Cannot get the file descriptor from uri: $path")
|
||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
} catch (e: FileNotFoundException) {
|
return parcelFileDescriptor.detachFd()
|
||||||
Log.error("[FileUtil]: File not found for uri: $path. ${e.message}")
|
}
|
||||||
return -1
|
|
||||||
} catch (e: SecurityException) {
|
|
||||||
Log.error("[FileUtil]: Security exception while accessing uri: $path, ${e.message}")
|
|
||||||
return -1
|
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.error("[FileUtil]: Unexpected error while opening content uri: $path. ${e.message}")
|
Log.error("[FileUtil]: Cannot open content uri, error: " + e.message)
|
||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -134,9 +130,8 @@ object FileUtil {
|
|||||||
DocumentsContract.Document.COLUMN_DISPLAY_NAME,
|
DocumentsContract.Document.COLUMN_DISPLAY_NAME,
|
||||||
DocumentsContract.Document.COLUMN_MIME_TYPE
|
DocumentsContract.Document.COLUMN_MIME_TYPE
|
||||||
)
|
)
|
||||||
var cursor: Cursor? = null
|
var c: Cursor? = null
|
||||||
val results = mutableListOf<CheapDocument>()
|
val results: MutableList<CheapDocument> = ArrayList()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
val docId = if (isRootTreeUri(uri)) {
|
val docId = if (isRootTreeUri(uri)) {
|
||||||
DocumentsContract.getTreeDocumentId(uri)
|
DocumentsContract.getTreeDocumentId(uri)
|
||||||
@ -145,24 +140,21 @@ object FileUtil {
|
|||||||
}
|
}
|
||||||
|
|
||||||
val childrenUri = DocumentsContract.buildChildDocumentsUriUsingTree(uri, docId)
|
val childrenUri = DocumentsContract.buildChildDocumentsUriUsingTree(uri, docId)
|
||||||
cursor = context.contentResolver.query(childrenUri, columns, null, null, null)
|
c = context.contentResolver.query(childrenUri, columns, null, null, null)
|
||||||
|
while (c!!.moveToNext()) {
|
||||||
cursor?.use { c ->
|
val documentId = c.getString(0)
|
||||||
while (c.moveToNext()) {
|
val documentName = c.getString(1)
|
||||||
val documentId = c.getString(c.getColumnIndexOrThrow(DocumentsContract.Document.COLUMN_DOCUMENT_ID))
|
val documentMimeType = c.getString(2)
|
||||||
val documentName = c.getString(c.getColumnIndexOrThrow(DocumentsContract.Document.COLUMN_DISPLAY_NAME))
|
|
||||||
val documentMimeType = c.getString(c.getColumnIndexOrThrow(DocumentsContract.Document.COLUMN_MIME_TYPE))
|
|
||||||
val documentUri = DocumentsContract.buildDocumentUriUsingTree(uri, documentId)
|
val documentUri = DocumentsContract.buildDocumentUriUsingTree(uri, documentId)
|
||||||
val document = CheapDocument(documentName, documentMimeType, documentUri)
|
val document = CheapDocument(documentName, documentMimeType, documentUri)
|
||||||
results.add(document)
|
results.add(document)
|
||||||
}
|
}
|
||||||
} ?: run {
|
|
||||||
Log.error("[FileUtil]: Cursor is null")
|
|
||||||
}
|
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.error("[FileUtil]: Cannot list files: ${e.message}")
|
Log.error("[FileUtil]: Cannot list file error: " + e.message)
|
||||||
|
} finally {
|
||||||
|
closeQuietly(c)
|
||||||
}
|
}
|
||||||
return results.toTypedArray()
|
return results.toTypedArray<CheapDocument>()
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user