dongwuying0221 2018-01-04 02:46 采纳率: 0%
浏览 377
已采纳

在go lang中使用exec.command进行网络使用

I have a requirement to map the drives in Windows using go and found this link to be useful What is the best way to map windows drives using golang?

When I tried to use the code given here, I ran into this error

exec: "net use": executable file not found in %PATH% 

I verified that the bin folder of go is in the PATH variable. I also tried by running it like

cmd, err := exec.Command("cmd", "/c", "NET USE", "T:", \\SERVERNAME\C$, "/PERSISTENT").CombinedOutput()  

but I get this error:

exit status 1 You used an option with an invalid value.  

Any help on what I'm doing wrong here ?

  • 写回答

1条回答 默认 最新

  • dongxiangshen7916 2018-01-04 02:55
    关注

    Every argument to exec.Command() is used as a single argument, so:

    exec.Command(... "NET USE", ..)
    

    Will mean that NET USE is passed as a single argument, which is the same as doing this from the command line:

    cmd /c "net use"
    

    Which means it will try to find net use.exe, instead of passing the argument use to net.exe.

    So the correct way is:

    exec.Command("cmd", "/c", "net", "use", "Q:, `\\SERVER\SHARE`, "/user:Alice pa$$word", "/P")
    

    The cmd /c part probably isn't needed, but I don't have a Windows machine to verify.

    Also note how I used backticks (`) for \\SERVER\SHARE instead of ", so you don't have to double up the backslashes.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥30 python代码,帮调试,帮帮忙吧