Home
last modified time | relevance | path

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

/ohos5.0/foundation/filemanagement/user_file_service/interfaces/kits/native/trash/src/
H A Dfile_trash_n_exporter.cpp430 int ret = RecursiveFunc(FileTrashNExporter::trashPath_, dirents); in ListFile()
617 if (path.find(FileTrashNExporter::trashPath_) == string::npos) { in Recover()
674 if (path.find(FileTrashNExporter::trashPath_) == string::npos) { in CompletelyDelete()
697 bool FileTrashNExporter::Export() in Export()
706 string FileTrashNExporter::GetClassName() in GetClassName()
708 return FileTrashNExporter::className_; in GetClassName()
711 void FileTrashNExporter::InitTrashPath() in InitTrashPath()
713 if (FileTrashNExporter::trashPath_.empty()) { in InitTrashPath()
715 if (!FileTrashNExporter::trashPath_.empty()) { in InitTrashPath()
730 FileTrashNExporter::FileTrashNExporter(napi_env env, napi_value exports) : NExporter(env, exports) in FileTrashNExporter() function in OHOS::Trash::FileTrashNExporter
[all …]
/ohos5.0/foundation/filemanagement/user_file_service/interfaces/kits/native/trash/include/
H A Dfile_trash_n_exporter.h41 class FileTrashNExporter final : public NExporter {
54 FileTrashNExporter(napi_env env, napi_value exports);
55 ~FileTrashNExporter() override;
/ohos5.0/foundation/filemanagement/user_file_service/interfaces/kits/native/trash/
H A Dmodule.cpp31 products.emplace_back(make_unique<FileTrashNExporter>(env, exports)); in Export()