golang1.1 path包bug

rufidmx · · 2715 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

func Dir(path string) string

Dir returns all but the last element of path, typically the path's directory. After dropping the final element using Split, the path is Cleaned and trailing slashes are removed. If the path is empty, Dir returns ".". If the path consists entirely of slashes followed by non-slash bytes, Dir returns a single slash. In any other case, the returned path does not end in a slash.

▾ 示例

代码:

fmt.Println(path.Dir("/a/b/c"))

输出:

/a/b
这个函数属于path package中的一个,但是无法解析windows的反斜杠地址,比如:输入:
fmt.Println(path.Dir("c:\macs\leo\"))
输出为:.
一个dot号。
但是golang牛逼的地方在于:可以解析这样的地址:C:\golang\src\LBSIM-MVC2\src/conf/config.json,,哈哈 真是好用,不需要 我自己调用runtime.GOOS进行判断了。

有疑问加站长微信联系(非本文作者)

本文来自:CSDN博客

感谢作者:rufidmx

查看原文:golang1.1 path包bug

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

2715 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传