오늘은 Golang으로 파일을 압축하는 방법을 알아보겠습니다. 내용은 아래 소스파일의 주석을 확인해주세요. package main import( "archive/tar" "path/filepath" ) func compress(tarWriter *tar.Writer, dir *os.File) error { // 0을 넘겨 모든 파일 정보를 받아옵니다. files, _ := dir.Readdir(0) for _, fileInfo := range files { // 파일을 가져오고 file, err := os.Open(dir.Name() + string(filepath.Separator) + fileInfo.Name()) if err != nil { return err } // 파일이 디렉터리일 경우 if ..
오늘은 Golang으로 간단한 REST API를 만드는 방법을 쓸까 한다. 바로 시작하자 우선은 Directory를 하나 만들고 시작 mkdir rest go module 등록 go mod init noah.io/ark/rest main.go 생성 touch main.go Directory 구조 tree . ├── go.mod └── main.go main.go package main func main() { } 정말 간단하게 만들거라 위 구조에서 변경되는 건 없을 듯하다. http 패키지를 이용해 우선 서버를 띄워보자. package main import "net/http" func main() { http.ListenAndServe(":8080", nil) } 이렇게만 하면 포트 8080인 서버를 하..
- Total
- Today
- Yesterday
- golang http
- postgres container
- golang REST API example
- golang api
- db dump
- docker redis image
- docker redis
- postgresql dump
- postgresql db dump
- golang request body decode
- golang rest api server
- golang web api
- postgres images
- docker run redis
- pg db dump
- docker redis container
- docker postgres
- golang 파일 압축
- golang file compress
- golang rest api
- docker run redis-cli
- golang 압축
- golang directory compress
- golang http decode
- pg dump
- docker run postgres
- golang 폴더 압축
- docker run redis-server
- golang http encode
- golang 디렉터리 압축
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |