zl程序教程

您现在的位置是:首页 >  移动开发

当前栏目

android 11系统去掉内部存储 lost.dir文件夹

Android存储系统 11 文件夹 内部 去掉 Dir
2023-09-14 09:04:17 时间

diff --git a/system/vold/Utils.cpp b/system/vold/Utils.cpp
index e92cfcc216…e9e58037f1 100755
— a/system/vold/Utils.cpp
+++ b/system/vold/Utils.cpp
@@ -684,9 +684,9 @@ static std::vector<const char*> ConvertToArgv(const std::vectorstd::string& ar
argv.reserve(args.size() + 1);
for (const auto& arg : args) {
if (argv.empty()) {

  •        LOG(DEBUG) << arg;
    
  •        LOG(INFO) << arg;
       } else {
    
  •        LOG(DEBUG) << "    " << arg;
    
  •        LOG(INFO) << "    " << arg;
       }
       argv.emplace_back(arg.data());
    
    }
    @@ -734,6 +734,8 @@ status_t ForkExecvp(const std::vectorstd::string& args, std::vector<std::strin
    _exit(EXIT_FAILURE