Home
last modified time | relevance | path

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

/ohos5.0/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_file/class_file/
H A Dfile_n_exporter.cpp602 struct dirent *entp; in DirMove() local
603 while ((entp = readdir(dirp)) != nullptr) { in DirMove()
604 if (string(entp->d_name) == "." || string(entp->d_name) == "..") { in DirMove()
607 string srcBuf = src + "/" + string(entp->d_name); in DirMove()
608 string dstBuf = dest + "/" + string(entp->d_name); in DirMove()
609 if (entp->d_type == DT_DIR && DirMove(srcBuf.c_str(), dstBuf.c_str()) != SUCCESS) { in DirMove()
614 if (entp->d_type == DT_REG) { in DirMove()