Golang에서 Windows 파일 경로 지정하기 Go를 이용해 파일을 다루는 방법 중에서도 Windows를 사용하는 경우에 적합한 방법을 소개합니다. Go의 path/filepath 모듈은 백슬래시를 처리할 수 있어 Windows OS의 파일 경로를 다룰 수 있습니다. path/filepath 모듈은 다음과 같이 사용할 수 있습니다. 예제 코드 package main import ( "fmt" "path/filepath" ) func main() { filePath := "C:\\Users\\user\\workspace\\main.go" dir, file := filepath.Split(filePath) fmt.Println("DIR :", dir) fmt.Println("FILE :", file) v..