Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ DriveFormat

unsafe string System.IO.DriveInfo.DriveFormat
get

Definition at line 20 of file DriveInfo.cs.

21 {
22 get
23 {
24 char* ptr = stackalloc char[261];
26 {
27 if (!global::Interop.Kernel32.GetVolumeInformation(Name, null, 0, null, null, out var _, ptr, 261))
28 {
29 throw Error.GetExceptionForLastWin32DriveError(Name);
30 }
31 }
32 return new string(ptr);
33 }
34 }
static System.IO.DisableMediaInsertionPrompt Create()