Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fs2 (0.01 sec)

  1. src/os/types_windows.go

    		}
    	}
    	fs.name = filepathlite.Base(path)
    	return nil
    }
    
    func sameFile(fs1, fs2 *fileStat) bool {
    	e := fs1.loadFileId()
    	if e != nil {
    		return false
    	}
    	e = fs2.loadFileId()
    	if e != nil {
    		return false
    	}
    	return fs1.vol == fs2.vol && fs1.idxhi == fs2.idxhi && fs1.idxlo == fs2.idxlo
    }
    
    // For testing.
    func atime(fi FileInfo) time.Time {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top