-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
54 lines (47 loc) · 949 Bytes
/
main.go
File metadata and controls
54 lines (47 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package main
import (
"html/template"
"io"
"net/http"
"os"
)
func h(w http.ResponseWriter, r *http.Request) {
file, handle, err := r.FormFile("upload")
if err != nil {
w.Write([]byte(err.Error()))
return
}
f, err := os.OpenFile("MyFile/"+handle.Filename, os.O_WRONLY|os.O_CREATE, 0777)
if err != nil {
w.Write([]byte(err.Error()))
return
}
_, err = io.Copy(f, file)
if err != nil {
w.Write([]byte(err.Error()))
return
}
defer file.Close()
defer f.Close()
w.Write([]byte("ok"))
return
}
func index(w http.ResponseWriter, r *http.Request) {
t, err := template.ParseFiles("./pages/index.html")
if err != nil {
w.Write([]byte(err.Error()))
return
}
t.Execute(w, nil)
}
func main() {
if _ , err := os.Stat("MyFile"); err != nil{
os.Mkdir("MyFile", 0777)
}
http.HandleFunc("/", index)
http.HandleFunc("/upload", h)
err := http.ListenAndServe(":9999", nil)
if err != nil {
panic(err)
}
}