25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

22 satır
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. }