You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For Linux machines, this will be the mount point, e.g. /data. For Windows systems, this is the drive letter, e.g. "G". A colon should not be included
48
+
*/
38
49
publicStringgetMountPoint() {
39
50
returnmountPoint;
40
51
}
41
52
53
+
/*
54
+
For Linux machines, this will be the file system type, e.g. ext3. For Windows system, this is the `-FileSystem` parameter passed to the `Format-Volume` cmdlet, e.g. NTFS
55
+
*/
42
56
publicStringgetFilesystemType() {
43
57
returnfilesystemType;
44
58
}
45
59
60
+
/*
61
+
Windows only. The volume label to be assigned to the volume, e.g. "MyDataDrive"
0 commit comments