Windows 명령 으로 로 컬 폴 더 삭제

543 단어 windows
private static final String CMMD = "cmd.exe /C RD /S /Q \"%s\"";

	public static void deleteFolder(String path)
	{
		File file = new File(folderPath);
		if ( !file.exists() )
		{
		}

		if ( !file.isDirectory() )
		{
		}
		
	String command = String.format(CMMD, path)		

System.out.println( "     : " + command );
		Process process = Runtime.getRuntime().exec(command);
		process.waitFor();
	}

좋은 웹페이지 즐겨찾기