//This is a program for destroying an entire folder on your computer.
//This program after compiled with java will consistently destroy endless folder depth.
//This program will list the files it's deleting.
//You may use CHATGPT to help install the java development kit to get this program working.

import java.io.File;
public class DestroyFolder
{
	static File f1;
	static File[] s1;
	static File s2;
	static int i1;
	public static void main(String[] args)
	{
		i1 = 1;
		f1 = new File(".\\" + args[0]);
		s1 = f1.listFiles();
		while(i1 != 0)
		{
			s1 = f1.listFiles();
			while(s1 != null && s1.length > 0)
			{
				f1 = s1[0];
				i1++;
				s1 = f1.listFiles();
			}
			System.out.println("FileName: " + f1.toString());
			System.out.println("FileDepth: " + i1);
			s2 = f1.getParentFile();
			f1.delete();
			f1 = s2;
			i1--;
		}
	}
}