
go
supolovedn
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
goland文件处理
golang是优秀的软件编程语言,由于golang很好的兼容各个系统,我经常使用golang写工具。 写工具经常会用到文件处理,io操作。 FileInfo接口 在遍历文件夹的时候回经常用到FileInfo接口 type FileInfo interface { Name() string // 文件名称 Size() int64 // 文件大小 Mode...原创 2020-04-20 01:22:55 · 346 阅读 · 0 评论 -
Golang判断Elasticsearch中的索引是否存在
Elasticsearch:6.8.4 Goland:1.13.1 func IsExistsIndex(idx string)bool{ res, err := es.Cat.Indices( es.Cat.Indices.WithIndex(idx), ) if err != nil { fmt.Println(err.Error()) return false ...原创 2019-12-06 11:03:02 · 1493 阅读 · 0 评论