| 123456789101112131415161718192021222324252627 |
- #include <ls-std/core/exception/FileNotFoundException.hpp>
- #include <ls-std/io/File.hpp>
- #include <ls-std/io/evaluator/FileExistenceEvaluator.hpp>
- #include <string>
- ls::std::io::FileExistenceEvaluator::FileExistenceEvaluator(::std::string _filePath) : ls::std::core::Class("FileExistenceEvaluator"), filePath(::std::move(_filePath))
- {}
- ls::std::io::FileExistenceEvaluator::~FileExistenceEvaluator() = default;
- void ls::std::io::FileExistenceEvaluator::evaluate()
- {
- if (!ls::std::io::File{this->filePath}.exists())
- {
- ::std::string message = "\"" + this->filePath + "\" does not exist!";
- throw ls::std::core::FileNotFoundException{message};
- }
- }
|