Go를 사용하여 Windows에서 파일 생성 날짜 검색
질문: 파일 생성 날짜에 어떻게 액세스할 수 있나요? Go 프로그래밍을 사용하는 Windows 시스템에서 언어?
답변: Go를 사용하여 Windows에서 파일 생성 날짜를 검색하려면 os.File의 Sys 메소드를 활용하여 시스템별 데이터 구조, 특히 Windows 시스템용 Win32FileAttributeData. Win32FileAttributeData 구조에는 파일 생성 타임스탬프를 나타내는 CreationTime이 포함되어 있습니다.
이 접근 방식을 보여 주려면:
import ( "os" "syscall" "time" ) func GetFileCreationTime(path string) (time.Time, error) { fileInfo, err := os.Stat(path) if err != nil { return time.Time{}, err } // Verify that the file information is compatible with Windows sysFileInfo, isWindows := fileInfo.Sys().(*syscall.Win32FileAttributeData) if !isWindows { return time.Time{}, nil } // Convert the nanosecond timestamp to a `time.Time` object return time.Unix(0, sysFileInfo.CreationTime.Nanoseconds()), nil }
사용 예:
creationTime, err := GetFileCreationTime("./myfile.txt") if err != nil { // Handle file opening error } fmt.Println("File creation time:", creationTime)
이 접근 방식을 활용하면 Windows에서 파일 생성 날짜를 쉽게 검색할 수 있습니다. Go 프로그래밍 언어를 사용하는 시스템입니다.
위 내용은 Go를 사용하여 Windows에서 파일의 생성 날짜를 얻는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!