mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-24 02:15:50 +08:00
Conflicts: Gopkg.lock pkg/appsrv/appsrv.go pkg/cloudcommon/options.go pkg/compute/models/hosts.go pkg/compute/models/quotas.go pkg/compute/service/service.go pkg/mcclient/mcclient.go
21 lines
327 B
Go
21 lines
327 B
Go
package missinggo
|
|
|
|
import (
|
|
"os"
|
|
"path"
|
|
)
|
|
|
|
// Splits the pathname p into Root and Ext, such that Root+Ext==p.
|
|
func PathSplitExt(p string) (ret struct {
|
|
Root, Ext string
|
|
}) {
|
|
ret.Ext = path.Ext(p)
|
|
ret.Root = p[:len(p)-len(ret.Ext)]
|
|
return
|
|
}
|
|
|
|
func FilePathExists(p string) bool {
|
|
_, err := os.Stat(p)
|
|
return err == nil
|
|
}
|