RosettaCodeData/Task/Delete-a-file/D/delete-a-file-2.d

9 lines
131 B
D
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
import tango.io.Path;
void main() {
remove("input.txt");
remove("/input.txt");
remove("docs");
remove("/docs");
}