首页 > 其他 > 详细

关于Go的一个文件目录共享应用实例

时间:2015-07-14 22:47:15      阅读:335      评论:0      收藏:0      [点我收藏+]
<pre style="margin-top: 0px; margin-bottom: 0px;"><span style=" font-weight:600; color:#000080;">package</span><span style=" color:#c0c0c0;"> </span>main

import (
    "flag"
    "fmt"
    "net/http"
    "os/exec"
    "path/filepath"
    "strings"
    "sync"
    "text/template"
)

const L = `<html>
<title>文件列表</title>
<body>
    {{$ip := .IP}}
    {{$dir := .Dir}}
    {{range $k,$v := .List}}<a href="http://{{$ip}}/{{$dir}}/{{$v}}">{{$v}}</a><br>
    {{end}}
</body>
</html>`

var path *string = flag.String("p", "/tmp", "共享的路径")

type Dirinfo struct {
    lock sync.Mutex
    IP   string
    Dir  string
    List []string
}

var x Dirinfo
var name, dir string

func main() {
    flag.Parse()
    name = filepath.Base(*path)
    dir = filepath.Dir(*path)
    l := list(*path)
    x.Dir = name
    x.List = l
    fmt.Println("共享的目录:", *path)
    http.Handle(fmt.Sprintf("/%s/", name), http.FileServer(http.Dir(dir)))
    http.HandleFunc("/", router)
    http.ListenAndServe(":1789", nil)
}

func router(w http.ResponseWriter, r *http.Request) {
    x.lock.Lock()
    x.IP = r.Host
    x.lock.Unlock()
    t := template.New("")
    t.Parse(L)
    t.Execute(w, x)
}

func list(path string) []string {
    cmd := exec.Command("ls", "-t", path)
    b, _ := cmd.Output()
    l := strings.Split(string(b), "\n")
    return l
}



    
        

版权声明:本文为博主原创文章,未经博主允许不得转载。

关于Go的一个文件目录共享应用实例

原文:http://blog.csdn.net/fyxichen/article/details/46882281

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!