This commit is contained in:
cvaldes1201
2023-11-08 13:51:15 -06:00
parent d27ffca72d
commit ff26e0667a
7 changed files with 43 additions and 20 deletions

View File

@@ -242,8 +242,8 @@ Sub fileProvider_init
Dim p As Phone
If p.SdkVersion >= 24 Or File.ExternalWritable = False Then
UseFileProvider = True
SharedFolder = File.Combine(File.DirInternal, "shared")
If Not(File.IsDirectory(File.DirInternal,"shared")) Then
SharedFolder = File.Combine(File.DirRootExternal, "shared")
If Not(File.IsDirectory(File.DirRootExternal,"shared")) Then
File.MakeDir("", SharedFolder)
End If
Else