Detecting Drive Types

CK1820 
Created at Sep 18, 2007 23:26:33 
99   0   0   0  
Here's how to get the types of drives on your computer:

//Note: you will need one button and

//one memo on your form, for this tip...

procedure TForm1.Button1Click(Sender: TObject) ;

var

  Drive: Char;

  DriveLetter: String[4];

begin

  for Drive := 'A' to 'Z' do

  begin

  DriveLetter := Drive + ':';

  case GetDriveType(PChar(Drive + ':')) of

   DRIVE_REMOVABLE:

    Memo1.Lines.Add(DriveLetter + ' Floppy Drive') ;

   DRIVE_FIXED:

    Memo1.Lines.Add(DriveLetter + ' Fixed Drive') ;

   DRIVE_REMOTE:

    Memo1.Lines.Add(DriveLetter + ' Network Drive') ;

   DRIVE_CDROM:

    Memo1.Lines.Add(DriveLetter + ' CD-ROM Drive') ;

   DRIVE_RAMDISK:

    Memo1.Lines.Add(DriveLetter + ' RAM Disk') ;

   end;

  end;

end;


Tags: BlockInput DRIVE_CDROM DRIVE_FIXED DRIVE_RAMDISK DRIVE_REMOTE DRIVE_REMOVABLE Delphi GetDriveType chkdsk Share on Facebook Share on X

◀ PREVIOUS
Detecting and preventing Windows shut down
▶ NEXT
Disable Mouse and Keyboard from Delphi Code
  Comments 0
Login for comment
SIMILAR POSTS

Disable Mouse and Keyboard from Delphi Code (created at Sep 18, 2007)

Detecting and preventing Windows shut down (created at Sep 18, 2007)

Display Standard Windows Properties dialog (created at Sep 18, 2007)

Disable ALT+TAB, CTRL+ESC, CTRL+ALT+DEL (created at Sep 18, 2007)

Copying Group of Files using Delphi with Standard Animation Dialog (SHFileOperation) (created at Sep 18, 2007)

Controling sound volume from code (created at Sep 18, 2007)

How to Close Another Application by Windows Caption (created at Sep 18, 2007)

How to Change the Windows Start button bitmap (created at Sep 18, 2007)

How to capture the output from a DOS (command/console) Window (created at Sep 18, 2007)

How to Activate/Deactivate the Screen Saver (created at Sep 18, 2007)

Retrieving all image links from an HTML document (created at Sep 17, 2007)

List All Network Drives (created at Sep 17, 2007)

Get Windows Temp directory (created at Sep 19, 2007)

How to set the "home page" for the Internet Explorer from Delphi code (created at Sep 17, 2007)

How to get get IE favorites (created at Sep 17, 2007)

How to Get Windows OS Version ? (created at Sep 19, 2007)

Extracting the domain (host) name from an e-mail address (created at Sep 17, 2007)

How to Get Filenames from Clipboard ? (created at Sep 19, 2007)

Download a file from the Internet with progress indicator (created at Sep 17, 2007)

Get system info (free memory, etc) (created at Sep 19, 2007)

Are we connected to the Internet? (created at Sep 17, 2007)

Get dimensions of usable space on monitor (work area) (created at Sep 19, 2007)

Get text from the control at pos x,y on screen (created at Sep 19, 2007)

How to determine the output of a console application ? (created at Sep 19, 2007)

How to install an INF file using Delphi ? (created at Sep 19, 2007)

How to play sounds on the PC Speaker ? (created at Sep 19, 2007)

How to remove your application from TaskBar (created at Sep 25, 2007)

How to track a user's idle time (created at Sep 25, 2007)

How to know whether the font is TrueTypeFont or not (created at Sep 25, 2007)

List Devices (LPT, COM ports, ...) (created at Sep 25, 2007)

OTHER POSTS IN THE SAME CATEGORY

How to know whether the font is TrueTypeFont or not (created at Sep 25, 2007)

How to track a user's idle time (created at Sep 25, 2007)

How to remove your application from TaskBar (created at Sep 25, 2007)

How to play sounds on the PC Speaker ? (created at Sep 19, 2007)

How to install an INF file using Delphi ? (created at Sep 19, 2007)

How to determine the output of a console application ? (created at Sep 19, 2007)

Get text from the control at pos x,y on screen (created at Sep 19, 2007)

Get dimensions of usable space on monitor (work area) (created at Sep 19, 2007)

Get system info (free memory, etc) (created at Sep 19, 2007)

How to Get Filenames from Clipboard ? (created at Sep 19, 2007)

How to Get Windows OS Version ? (created at Sep 19, 2007)

Get Windows Temp directory (created at Sep 19, 2007)

Disable ALT+TAB, CTRL+ESC, CTRL+ALT+DEL (created at Sep 18, 2007)

Display Standard Windows Properties dialog (created at Sep 18, 2007)

Disable Mouse and Keyboard from Delphi Code (created at Sep 18, 2007)

Detecting and preventing Windows shut down (created at Sep 18, 2007)

Copying Group of Files using Delphi with Standard Animation Dialog (SHFileOperation) (created at Sep 18, 2007)

Controling sound volume from code (created at Sep 18, 2007)

How to Close Another Application by Windows Caption (created at Sep 18, 2007)

How to Change the Windows Start button bitmap (created at Sep 18, 2007)

How to capture the output from a DOS (command/console) Window (created at Sep 18, 2007)

How to Activate/Deactivate the Screen Saver (created at Sep 18, 2007)

Retrieving all image links from an HTML document (created at Sep 17, 2007)

List All Network Drives (created at Sep 17, 2007)

How to set the "home page" for the Internet Explorer from Delphi code (created at Sep 17, 2007)

How to get get IE favorites (created at Sep 17, 2007)

Extracting the domain (host) name from an e-mail address (created at Sep 17, 2007)

Download a file from the Internet with progress indicator (created at Sep 17, 2007)

Are we connected to the Internet? (created at Sep 17, 2007)

TImage.Bitmap fade out (created at Sep 10, 2007)

UPDATES

Creating a Pinterest-Style Card Layout with Bootstrap and Masonry (created at Apr 24, 2024)

Mastering Excel Data Importation in PHP (updated at Apr 24, 2024)

JSON format control in PHP (updated at Apr 24, 2024)

Equal Height Blocks in Bootstrap with JavaScript (created at Apr 22, 2024)

How to convert integer to text string ? (updated at Apr 22, 2024)

Checking similarity between two strings in PHP (updated at Apr 21, 2024)

Create Blob Image in HTML based on the given Text, Width and Height in the Center of the Image without saving file (updated at Apr 21, 2024)

How do I determine the client IP type (IPv4/IPv6) in PHP (updated at Apr 16, 2024)

How do I determine the client IP type in Python - IPv4 or IPv6 (updated at Apr 13, 2024)

Getting Started with PyTorch: A Beginner's Guide to Building Your First Neural Network (updated at Apr 09, 2024)

Predicting Buyer Preferences with PyTorch: A Deep Learning Approach (updated at Apr 09, 2024)

Forecasting the Weather with PyTorch: A Beginner's Guide to Temperature Prediction (created at Apr 09, 2024)

PyTorch example to Forcast Stock Price based on 10 days Dataset (created at Apr 09, 2024)

Mastering Model Persistence: Saving and Loading Trained Machine Learning Models in Python (created at Apr 08, 2024)

Harnessing the Power of Random Forest Algorithm in Python (created at Apr 08, 2024)

Understanding and Implementing K-Nearest Neighbors (KNN) Algorithm in Python (created at Apr 08, 2024)

Forecasting with Linear Regression and KNN Regression in Python (updated at Apr 07, 2024)

What is 302 Found Redirection in HTTP 1.1? (created at Apr 04, 2024)

Mastering Random Forest Regression: A Comprehensive Guide with Python Examples (updated at Apr 01, 2024)

Python Implementation of Linear Regression (updated at Apr 01, 2024)

Mastering Supervised Machine Learning with Python: A Comprehensive Guide (created at Apr 01, 2024)

Mastering AI: A Beginner's Guide to Python Programming and Beyond (created at Apr 01, 2024)

How do I create animated background for Google Meet? (updated at Mar 28, 2024)

Building a Simple DNS Server in Delphi with TTL Support (created at Mar 16, 2024)

How to force cookies, disable php sessid in URL ? (updated at Mar 16, 2024)

Implementing a Versatile DNS Server in PHP: Handling A, AAAA, CNAME, and TXT Records (updated at Mar 16, 2024)

Implementing a Versatile DNS Server in Python: Handling A, AAAA, CNAME, and TXT Records (created at Mar 16, 2024)

Building a Basic DNS Server in PHP/Python: A Beginner's Guide (updated at Mar 15, 2024)

Dynamic DNS Made Easy: Building a Python-Based Solution (created at Mar 15, 2024)

Exploring the Depths of Data Transfer: sendfile vs. kTLS (created at Mar 15, 2024)