Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

22 rader
345 B

  1. #pragma once
  2. #include "file.h"
  3. namespace cppfs
  4. {
  5. /* file */
  6. const file& file::remove() const
  7. {
  8. using namespace std::string_literals;
  9. auto& s = _path.str();
  10. if (unlink(s.c_str()))
  11. throw cppcore::error_exception("Unable to remove file: "s + _path.str(), errno);
  12. return *this;
  13. }
  14. }