mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 13:46:13 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			143 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			143 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const fs = require("fs");
 | 
						|
 | 
						|
const path = "./data/test";
 | 
						|
 | 
						|
if (fs.existsSync(path)) {
 | 
						|
    fs.rmdirSync(path, {
 | 
						|
        recursive: true,
 | 
						|
    });
 | 
						|
}
 |