Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for FileAttributes (0.16 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/os_windows.go

    		}
    		name := syscall.UTF16ToString(data.FileName[0:])
    		if name == "" || name == "." || name == ".." { // Useless names
    			continue
    		}
    
    		var typ os.FileMode // regular file
    		switch {
    		case data.FileAttributes&syscall.FILE_ATTRIBUTE_REPARSE_POINT != 0:
    			// Reparse point is a symlink
    			fi, err := os.Stat(pathJoin(dirPath, name))
    			if err != nil {
    				// It got deleted in the meantime, not found
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Feb 18 16:25:55 GMT 2025
    - 5K bytes
    - Click Count (0)
  2. api/go1.txt

    pkg syscall (windows-386), type ByHandleFileInformation struct
    pkg syscall (windows-386), type ByHandleFileInformation struct, CreationTime Filetime
    pkg syscall (windows-386), type ByHandleFileInformation struct, FileAttributes uint32
    pkg syscall (windows-386), type ByHandleFileInformation struct, FileIndexHigh uint32
    pkg syscall (windows-386), type ByHandleFileInformation struct, FileIndexLow uint32
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Click Count (0)
Back to Top