Golang Implement network card judgment, delete folder, restart operating system

Source: Internet
Author: User

<pre>
Package Main

Import (
"FMT"
"NET"
"OS"
"Os/exec"
"Strings"
)

Const SOURCE_MAC = "56:00:45:18:49:00"
Const SOURCE_FILE = "/work/temp"

Func Main () {
var find = False
interfaces, err: = Net. Interfaces ()

if err != nil {    panic("Error : " + err.Error())}for _, inter := range interfaces {    mac := inter.HardwareAddr         if strings.EqualFold(mac.String(),SOURCE_MAC){        find = true        fmt.Println(mac.String())                os.RemoveAll(SOURCE_FILE)                c := exec.Command("shutdown.exe","-s","-t","00")        c.Stdout = os.Stdout        c.Run()                break    }        if find {        break    }}

}
</pre>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.