Home
last modified time | relevance | path

Searched refs:delPath (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/foundation/filemanagement/app_file_service/interfaces/innerkits/native/file_share/src/
H A Dfile_share.cpp241 static void DelSharePath(const string &delPath) in DelSharePath() argument
243 if (!SandboxHelper::CheckValidPath(delPath)) { in DelSharePath()
248 if (access(delPath.c_str(), F_OK) == 0) { in DelSharePath()
249 if (umount2(delPath.c_str(), MNT_DETACH) != 0) { in DelSharePath()
252 if (remove(delPath.c_str()) != 0) { in DelSharePath()