[go] 파일 이름 추출
package main
import (
"fmt"
"path/filepath"
)
func main() {
filePath := "/path/to/file/somefile.txt"
fileName := filepath.Base(filePath)
fmt.Println("파일 이름:", fileName)
}
이 예제에서는 filepath
패키지의 Base
함수를 사용하여 파일 경로에서 파일 이름을 추출합니다. 위의 코드를 실행하면 파일 이름 “somefile.txt”가 출력됩니다.
Go 언어에서 파일 이름을 추출하는 방법에 대해 더 알아보려면 공식 문서인 패키지 filepath을 확인하십시오.