Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FindFirstFile (0.3 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)
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Oct 18 18:08:15 GMT 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
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top