13 lines
240 B
Text
13 lines
240 B
Text
using System;
|
|
using System.IO;
|
|
|
|
namespace DeleteFile {
|
|
class Program {
|
|
static void Main() {
|
|
File.Delete("input.txt");
|
|
Directory.Delete("docs");
|
|
File.Delete("/input.txt");
|
|
Directory.Delete("/docs");
|
|
}
|
|
}
|
|
}
|