mirror of
				https://github.com/mickael-kerjean/filestash.git
				synced 2025-10-31 01:58:11 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			125 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			125 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package common
 | |
| 
 | |
| func IsDirectory(path string) bool {
 | |
| 	if string(path[len(path)-1]) != "/" {
 | |
| 		return false
 | |
| 	}
 | |
| 	return true
 | |
| }
 | 
