Golang奇怪的行为使用filepath.Glob

时间:2016-05-27 15:24:53

标签: intellij-idea go glob

我对Golang上的glob使用感到困惑,我可能错过了一些环境变量。我不知道我做得对。

在我的IDE(Intellij IDEA)上运行时,此代码运行得非常好,但是当通过go run在操作系统上运行时,它不起作用。我无法弄清楚有什么区别。

package main

import (
    "path/filepath"
    "fmt"
    "os"
)

func main() {

    file := os.Args[1]

    matches, err := filepath.Glob(file)

    if err != nil {
        fmt.Println(err)
        os.Exit(1)
    }
    fmt.Println(fmt.Sprintf("Number of matches:%d", len(matches)))
    fmt.Println(matches)
}

在OS上运行

go run globtest.go /Users/bernardovale/glotest/*.bkp
Number of matches:1
[/Users/bernardovale/glotest/test1.bkp]

ls -l /Users/bernardovale/glotest/*.bkp
-rw-r--r--  1 bernardovale  staff  0 May 27 12:06 /Users/bernardovale/glotest/test1.bkp
-rw-r--r--  1 bernardovale  staff  0 May 27 12:06 /Users/bernardovale/glotest/test2.bkp
-rw-r--r--  1 bernardovale  staff  0 May 27 12:06 /Users/bernardovale/glotest/test3.bkp

在IntelliJ IDEA上运行

go run on the IDEA

1 个答案:

答案 0 :(得分:3)

这里的区别在于shell正在执行glob并为您的应用程序提供单独的值。从shell执行时,您应该用双引号将glob包装起来,以确保它首先不被shell评估。请参阅下面的示例。

Seans-MBP-2:~ sthorne$ echo Testing*
Testing Testing2 Testing3
Seans-MBP-2:~ sthorne$ echo "Testing*"
Testing*