Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LastWriteTime (0.15 sec)

  1. src/os/types_windows.go

    func (fs *fileStat) ModTime() time.Time {
    	return time.Unix(0, fs.LastWriteTime.Nanoseconds())
    }
    
    // Sys returns syscall.Win32FileAttributeData for file fs.
    func (fs *fileStat) Sys() any {
    	return &syscall.Win32FileAttributeData{
    		FileAttributes: fs.FileAttributes,
    		CreationTime:   fs.CreationTime,
    		LastAccessTime: fs.LastAccessTime,
    		LastWriteTime:  fs.LastWriteTime,
    		FileSizeHigh:   fs.FileSizeHigh,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/syscall/types_windows.go

    }
    
    func copyFindData(dst *Win32finddata, src *win32finddata1) {
    	dst.FileAttributes = src.FileAttributes
    	dst.CreationTime = src.CreationTime
    	dst.LastAccessTime = src.LastAccessTime
    	dst.LastWriteTime = src.LastWriteTime
    	dst.FileSizeHigh = src.FileSizeHigh
    	dst.FileSizeLow = src.FileSizeLow
    	dst.Reserved0 = src.Reserved0
    	dst.Reserved1 = src.Reserved1
    
    	// The src is 1 element bigger than dst, but it must be NUL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/syscall_windows.go

    type SecurityAttributes struct {
    	Length             uint16
    	SecurityDescriptor uintptr
    	InheritHandle      bool
    }
    
    type FILE_BASIC_INFO struct {
    	CreationTime   int64
    	LastAccessTime int64
    	LastWriteTime  int64
    	ChangedTime    int64
    	FileAttributes uint32
    
    	// Pad out to 8-byte alignment.
    	//
    	// Without this padding, TestChmod fails due to an argument validation error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top