> 백엔드 개발 > Golang > Go를 사용하여 Windows에서 파일의 생성 날짜를 얻는 방법은 무엇입니까?

Go를 사용하여 Windows에서 파일의 생성 날짜를 얻는 방법은 무엇입니까?

Susan Sarandon
풀어 주다: 2024-11-29 19:26:11
원래의
229명이 탐색했습니다.

How to Get a File's Creation Date in Windows Using Go?

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿