Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for FindFirstFile (0.07 seconds)

  1. cmd/os_windows.go

    	globAll := filepath.Clean(dirPath) + `\*`
    	globAllP, err := syscall.UTF16PtrFromString(globAll)
    	if err != nil {
    		return errInvalidArgument
    	}
    	data := &syscall.Win32finddata{}
    	handle, err := syscall.FindFirstFile(globAllP, data)
    	if err != nil {
    		if err = syscallErrToFileErr(dirPath, err); err == errFileNotFound {
    			return nil
    		}
    		return err
    	}
    	defer syscall.FindClose(handle)
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Feb 18 16:25:55 GMT 2025
    - 5K bytes
    - Click Count (0)
  2. api/go1.txt

    pkg syscall (windows-386), func Fchmod(Handle, uint32) error
    pkg syscall (windows-386), func Fchown(Handle, int, int) error
    pkg syscall (windows-386), func FindClose(Handle) error
    pkg syscall (windows-386), func FindFirstFile(*uint16, *Win32finddata) (Handle, error)
    pkg syscall (windows-386), func FindNextFile(Handle, *Win32finddata) error
    pkg syscall (windows-386), func FlushFileBuffers(Handle) error
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Click Count (0)
Back to Top