- Smalltalk
Select your favorite languages :
- Or search :
- Ada
- C
- C++
- C#
- D
- Dart
- Elixir
- Fortran
- Go
- Haskell
- JS
- JS
- JS
- Java
- Java
- Lua
- PHP
- Pascal
- Perl
- Python
- Python
- Ruby
- Rust
auto r = std::filesystem::remove(filepath);
filepath can be of type std::filesystem::path, or string, or const char*...
Returns true if the file was deleted.
Returns true if the file was deleted.
try
remove(filepath);
catch (FileException fe)
writeln(fe.msg);
try /catch can be used to track exceptions.
try {
fs.unlinkSync(filepath);
} catch (err) {
console.error(err);
}
This is synchronous.
deleteIfExists(of(filepath));
programming-idioms.org