Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetVolumeInformation (0.26 sec)

  1. internal/disk/type_windows.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package disk
    
    import (
    	"path/filepath"
    	"syscall"
    	"unsafe"
    )
    
    // GetVolumeInformation provides windows drive volume information.
    var GetVolumeInformation = kernel32.NewProc("GetVolumeInformationW")
    
    // getFSType returns the filesystem type of the underlying mounted filesystem
    func getFSType(path string) string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	DRIVE_UNKNOWN     = 0
    	DRIVE_NO_ROOT_DIR = 1
    	DRIVE_REMOVABLE   = 2
    	DRIVE_FIXED       = 3
    	DRIVE_REMOTE      = 4
    	DRIVE_CDROM       = 5
    	DRIVE_RAMDISK     = 6
    
    	// File system flags from GetVolumeInformation and GetVolumeInformationByHandle.
    	FILE_CASE_SENSITIVE_SEARCH        = 0x00000001
    	FILE_CASE_PRESERVED_NAMES         = 0x00000002
    	FILE_FILE_COMPRESSION             = 0x00000010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetVolumeInformation(rootPathName *uint16, volumeNameBuffer *uint16, volumeNameSize uint32, volumeNameSerialNumber *uint32, maximumComponentLength *uint32, fileSystemFlags *uint32, fileSystemNameBuffer *uint16, fileSystemNameSize uint32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top