Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FindFirstFile (0.19 sec)

  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)
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 5.1K bytes
    - Viewed (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
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top