golang1.1 path包bug

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

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。