我在一段时间后检查了我的手机(3个小时后),我发现我的所有照片和歌曲都没有了。我检查了我的eS文件资源管理器,因为默认情况下,我有Google文件(这不是管理文件的好方法)。我看到ES Explorer中的一切都很好。
我重新启动了手机几次,甚至拔出并重新插入了我的SD卡,但它不起作用。
如何修复问题?
我在一段时间后检查了我的手机(3个小时后),我发现我的所有照片和歌曲都没有了。我检查了我的eS文件资源管理器,因为默认情况下,我有Google文件(这不是管理文件的好方法)。我看到ES Explorer中的一切都很好。
我重新启动了手机几次,甚至拔出并重新插入了我的SD卡,但它不起作用。
如何修复问题?
I checked my phone after a while (after 3 hours), and I found that all of my photos and songs were not there anymore. I checked my ES file explorer, because by default, I have Google files (which is not a good way to manage files). I saw everything was fine in ES explorer.
I rebooted the phone a couple of times and even pulled out and reinserted my SD card but it didn't work.
How can the problem be fixed?
因为您可以从文件资源管理器访问您的音乐和图片,这通常意味着它被 .nomedia
文件忽略。
尝试从 /sdcard
, /sdcard/Music
, /sdcard/Pictures
,以及 /sdcard/DCIM
。
如果您可以访问手机上的终端应用程序,请尝试以下命令:
cd /sdcard/ #Or cd /mnt/sdcard or cd /storage/sdcard0 if that doesn't work rm -r ".nomedia"
(请注意,上面的命令将从手机中删除所有 abcdefghijklmn.nomedia
文件,因此还将出现其他文件(从App缓存)。)或者,您可以将SD卡放入计算机中,使用文件管理器搜索.nomedia,并删除它找到的所有.nomedia文件。
删去后 .nomedia
文件,您的图库和音乐应用程序应该看到您的图片和音乐。
Since you can access your music and pictures just fine from your file explorer, that usually means that it is being ignored by a .nomedia
file.
Try to delete the .nomedia files from /sdcard
, /sdcard/Music
, /sdcard/Pictures
, and /sdcard/DCIM
.
If you have access to a terminal app on your phone, try the following commands:
cd /sdcard/ #Or cd /mnt/sdcard or cd /storage/sdcard0 if that doesn't work rm -r ".nomedia"
(Note that the above commands will delete ALL .nomedia
files from your phone, so other files (from app caches) will also appear.) Alternatively, you could put your SD card in your computer, use the file manager to search for .nomedia, and delete all the .nomedia files it finds.
After deleting the .nomedia
files, your Gallery and Music apps should see your pictures and music.
© 2022 it.wenda123.org All Rights Reserved. 问答之家 版权所有