Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FileNameLength (0.12 sec)

  1. src/internal/syscall/windows/syscall_windows.go

    	LastAccessTime  syscall.Filetime
    	LastWriteTime   syscall.Filetime
    	ChangeTime      syscall.Filetime
    	EndOfFile       uint64
    	AllocationSize  uint64
    	FileAttributes  uint32
    	FileNameLength  uint32
    	EaSize          uint32
    	ShortNameLength uint32
    	ShortName       [12]uint16
    	FileID          uint64
    	FileName        [1]uint16
    }
    
    type FILE_FULL_DIR_INFO struct {
    	NextEntryOffset uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/syscall/types_windows.go

    	InternalHigh uintptr
    	Offset       uint32
    	OffsetHigh   uint32
    	HEvent       Handle
    }
    
    type FileNotifyInformation struct {
    	NextEntryOffset uint32
    	Action          uint32
    	FileNameLength  uint32
    	FileName        uint16
    }
    
    type Filetime struct {
    	LowDateTime  uint32
    	HighDateTime uint32
    }
    
    // Nanoseconds returns Filetime ft in nanoseconds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top