Remove boost dependency
[platform/core/appfw/app-installers.git] / src / common / step / rds / step_rds_parse.cc
index f843e30..c1d7cb8 100644 (file)
 namespace common_installer {
 namespace rds {
 
-namespace bf = boost::filesystem;
+namespace fs = std::filesystem;
 
 Step::Status StepRDSParse::precheck() {
-  bf::path rdsPath(context_->unpacked_dir_path.get() / ".rds_delta");
-  if (!bf::exists(rdsPath)) {
+  fs::path rdsPath(context_->unpacked_dir_path.get() / ".rds_delta");
+  if (!fs::exists(rdsPath)) {
     LOG(ERROR) << "no rds_delta file";
     return Step::Status::INVALID_VALUE;
   }