Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6079461
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:56:57+00:00 2026-05-23T10:56:57+00:00

I find a lot of VB6 examples out there, and a few C# examples,

  • 0

I find a lot of VB6 examples out there, and a few C# examples, but no concrete solution in VB.NET. Simply put, I need to get the next available drive letter in as few lines of code as possible. Anyone have a good example?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T10:56:57+00:00Added an answer on May 23, 2026 at 10:56 am

    Try something like this:

    Public Function FindNextAvailableDriveLetter() As String
    ' build a string collection representing the alphabet
    Dim alphabet As New StringCollection()
    
    Dim lowerBound As Integer = Convert.ToInt16("a"C)
    Dim upperBound As Integer = Convert.ToInt16("z"C)
    For i As Integer = lowerBound To upperBound - 1
        Dim driveLetter As Char = ChrW(i)
        alphabet.Add(driveLetter.ToString())
    Next
    
    ' get all current drives
    Dim drives As DriveInfo() = DriveInfo.GetDrives()
    For Each drive As DriveInfo In drives
        alphabet.Remove(drive.Name.Substring(0, 1).ToLower())
    Next
    
    If alphabet.Count > 0 Then
        Return alphabet(0)
    Else
        Throw New ApplicationException("No drives available.")
    End If
    End Function
    

    Source: CodeKeep

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i find a lot of questions about this problem but i did not solve...
When I seek for information regarding GWT I find a lot of java examples.
Auto-binding of request params seems like default behaviour, but I can't find a lot
I'm doing something like zgrep somepattern access_log.X.gz But I find that a lot of
I find that if there are a lot of classes the compilation time is
I find myself doing the following a lot, and i don't know if there
We find a lot of concrete subclasses under Collection . While trying to add
I happen to find a lot of Automated SQL Backup Solutions on the net.
I tried to customize django's admin css....but I'm stuck ....i did find a lot
i find lot of Threads about Log Parser, but none fulfill my desire, i

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.