go stat_actime2 源码

2022-07-15 浏览 (1301)

golang stat_actime2 代码

文件路径:/src/archive/tar/stat_actime2.go

// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build darwin || freebsd || netbsd

package tar

import (
	"syscall"
	"time"
)

func statAtime(st *syscall.Stat_t) time.Time {
	return time.Unix(st.Atimespec.Unix())
}

func statCtime(st *syscall.Stat_t) time.Time {
	return time.Unix(st.Ctimespec.Unix())
}

相关信息

go 源码目录

相关文章

go common 源码

go example_test 源码

go format 源码

go fuzz_test 源码

go reader 源码

go reader_test 源码

go stat_actime1 源码

go stat_unix 源码

go strconv 源码

go strconv_test 源码

  • 所属分类: 后端技术
  • 本文标签: golang
  • 版权声明: 本文链接 https://seaxiang.com/blog/ecb0f9c5a7a54c049bc740990931b4ee