투케이2K

67. (Go Lang) [Mac Os] Go 문법 : os 모듈 - WriteFile 사용해 텍스트 파일 쓰기 실시 - write text file 본문

Go Lang (Go 언어)

67. (Go Lang) [Mac Os] Go 문법 : os 모듈 - WriteFile 사용해 텍스트 파일 쓰기 실시 - write text file

투케이2K 2024. 2. 23. 20:50

[개발 환경 설정]

개발 언어 : Go

 

[사전) 프로젝트에 파일 추가 방법]

 
 

[소스 코드]

package main

import (
	"fmt"
	"os"
)

func main() {

	// ---------------------------------------------------
	// [기본 설명]
	// ---------------------------------------------------
	// "os" 패키지를 사용해 파일 읽기 및 쓰기를 수행할 수 있습니다
	// ---------------------------------------------------
	// WriteFile : 파일 쓰기를 수행 시 사용합니다
	// ---------------------------------------------------

	// [변수 선언]
	str := "twok"

	// [txt 파일 쓰기 수행]
	err := os.WriteFile("test.txt", []byte(str), 0644)
	if err != nil {
		panic(err)
	}

	// [로그 출력]
	fmt.Println("")
	fmt.Println("----------------------------------------------")
	fmt.Println("[로그 출력 수행]")
	fmt.Println("----------------------------------------------")
	fmt.Println("txt write success")
	fmt.Println("----------------------------------------------")
	fmt.Println("")
}
 

[결과 출력]

 

 

반응형
Comments