本文整理匯總了C#中System.ComponentModel.Win32Exception.IndexOf方法的典型用法代碼示例。如果您正苦於以下問題:C# Win32Exception.IndexOf方法的具體用法?C# Win32Exception.IndexOf怎麽用?C# Win32Exception.IndexOf使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.ComponentModel.Win32Exception
的用法示例。
在下文中一共展示了Win32Exception.IndexOf方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: UnmapFolderFromDrive
// --------------------------------------------------------------------------- -------------
// Class Name: VolumeFunctions
// Procedure Name: UnmapFolderFromDrive
// Purpose: Unmap a drive letter. We always unmp the drive, without checking the
// folder name.
// Parameters:
// - driveLetter (string) : Drive letter to be released, the the format "C:"
// - folderName (string) : Folder name that the drive is mapped to.
// --------------------------------------------------------------------------- -------------
internal static string UnmapFolderFromDrive(string driveLetter, string folderName)
{
DefineDosDevice(DDD_REMOVE_DEFINITION, driveLetter, folderName);
// Display the status of the "last" unmap we run.
string statusMessage = new Win32Exception(Marshal.GetLastWin32Error()).ToString();
return statusMessage.Substring(statusMessage.IndexOf(":") + 1);
}
示例2: MapFolderToDrive
// --------------------------------------------------------------------------- -------------
// Class Name: VolumeFunctions
// Procedure Name: MapFolderToDrive
// Purpose: Map the folder to a drive letter
// Parameters:
// - driveLetter (string) : Drive letter in the format "C:" without a back slash
// - folderName (string) : Folder to map without a back slash
// --------------------------------------------------------------------------- -------------
internal static string MapFolderToDrive(string driveLetter, string folderName)
{
// Is this drive already mapped? If so, we don't remap it!
StringBuilder volumeMap = new StringBuilder(1024);
QueryDosDevice(driveLetter, volumeMap, (uint)1024);
if (volumeMap.ToString().StartsWith(MAPPED_FOLDER_INDICATOR) == true)
return "Volume is already mapped - map not changed";
// Map the folder to the drive
DefineDosDevice(0, driveLetter, folderName);
// Display a status message to the user.
string statusMessage = new Win32Exception(Marshal.GetLastWin32Error()).ToString();
return statusMessage.Substring(statusMessage.IndexOf(":") + 1);
}