mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 16:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			422 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			422 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package utils
 | 
						|
 | 
						|
// CleanPath 清理Path中的多余的字符
 | 
						|
func CleanPath(path string) string {
 | 
						|
	l := len(path)
 | 
						|
	if l == 0 {
 | 
						|
		return "/"
 | 
						|
	}
 | 
						|
	result := []byte{'/'}
 | 
						|
	isSlash := true
 | 
						|
	for i := 0; i < l; i++ {
 | 
						|
		if path[i] == '\\' || path[i] == '/' {
 | 
						|
			if !isSlash {
 | 
						|
				isSlash = true
 | 
						|
				result = append(result, '/')
 | 
						|
			}
 | 
						|
		} else {
 | 
						|
			isSlash = false
 | 
						|
			result = append(result, path[i])
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return string(result)
 | 
						|
}
 | 
						|
 |