remove rmdir()
							parent
							
								
									07fb7756fb
								
							
						
					
					
						commit
						b5c3cda33b
					
				
							
								
								
									
										13
									
								
								os/os.v
								
								
								
								
							
							
						
						
									
										13
									
								
								os/os.v
								
								
								
								
							| 
						 | 
					@ -386,18 +386,19 @@ pub fn rm(path string) {
 | 
				
			||||||
	// C.unlink(path.cstr())
 | 
						// C.unlink(path.cstr())
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/* 
 | 
				
			||||||
 | 
					// TODO 
 | 
				
			||||||
fn rmdir(path string, guard string) {
 | 
					fn rmdir(path string, guard string) {
 | 
				
			||||||
	if !path.contains(guard) {
 | 
						if !path.contains(guard) {
 | 
				
			||||||
		println('rmdir canceled because the path doesnt contain $guard')
 | 
							println('rmdir canceled because the path doesnt contain $guard')
 | 
				
			||||||
		return
 | 
							return
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	println2('rmdir "$path"')
 | 
						$if !windows { 
 | 
				
			||||||
#ifndef windows
 | 
						} 
 | 
				
			||||||
	os.system('rm -rf "$path"')
 | 
						$else { 
 | 
				
			||||||
#else
 | 
						} 
 | 
				
			||||||
	os.system('rmdir /s /q "$path"')
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					*/ 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
pub fn unzip(path, out string) {
 | 
					pub fn unzip(path, out string) {
 | 
				
			||||||
	$if windows {
 | 
						$if windows {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue