12 lines
204 B
Go
12 lines
204 B
Go
|
package utils
|
||
|
|
||
|
import (
|
||
|
"path/filepath"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
func ReplaceExtension(filepathStr, newExt string) string {
|
||
|
ext := filepath.Ext(filepathStr)
|
||
|
return strings.TrimSuffix(filepathStr, ext) + newExt
|
||
|
}
|