bug:golang通过exec.Command()执行命令报错
1 通过exec指定zip命令报错
需求描述:压缩某个目录下的所有文件文章来源:https://www.toymoban.com/news/detail-544667.html
- 在执行过程中,发现zip命令可行,但是
/usr/bin/zip test.zip *
发现无法压缩成功,程序直接报错退出,后来排查返现是golang中的exec.Command()不支持*
通配符,但是我们可以通过下面的方式实现效果。
将*
替换为所有的文件名及目录:文章来源地址https://www.toymoban.com/news/detail-544667.html
package main
import (
"fmt"
"os/exec"
"path/filepath"
)
func main() {
zipName := "9999.zip"
command := []string{
"-r",
zipName,
}
tmp, err := filepath.Glob("*")
if len(tmp) == 0 {
fmt.Println("No matching files found")
}
fmt.Println("* tmp=", tmp)
command = append(command, tmp...)
if err != nil {
fmt.Println(err)
return
}
fmt.Println("args=", command)
cmd := exec.Command("/usr/bin/zip", command...)
fmt.Println("compression cmd=", cmd)
err = cmd.Run()
if err != nil {
fmt.Println("compression dir err=", err)
return
}
}
到了这里,关于bug:golang通过exec.Command()执行命令报错的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!