diff --git a/fs/Ntfs.cpp b/fs/Ntfs.cpp
index d24276f..eec31ce 100755
--- a/fs/Ntfs.cpp
+++ b/fs/Ntfs.cpp
@@ -107,18 +107,18 @@ status_t Mount(const std::string& source, const std::string& target, bool ro, bo
rc = ForkExecvp(cmd);
- if (rc == 0 && createLost) {
- auto lost_path = android::base::StringPrintf("%s/LOST.DIR", target.c_str());
- if (access(lost_path.c_str(), F_OK)) {
+ // if (rc == 0 && createLost) {
+ // auto lost_path = android::base::StringPrintf("%s/LOST.DIR", target.c_str());
+ // if (access(lost_path.c_str(), F_OK)) {
/*
* Create a LOST.DIR in the root so we have somewhere to put
* lost cluster chains (fsck_msdos doesn't currently do this)
使用U盘时,特殊意外情况下(如直接拨出u盘,传输文件过程中拨出U盘)创建LOST.DIR,客户需要移除LOST.DIR文件夹
于 2022-07-18 15:47:27 首次发布