Click here to Skip to main content
15,887,746 members
Articles / Programming Languages / C#

CD-Rom DLL for easy access to CD-Rom

Rate me:
Please Sign up or sign in to vote.
4.00/5 (2 votes)
31 Mar 2009CPOL 21.1K   534   14  
Class library for easy access to CD-ROM (CdRom) opening CD-Rom, C, Name of CD-Rom company in a line of code.
Image 1

Introduction

This project aims to provide easy access to CD-ROM properties and functions. This is a class library for .NET and is written in C# language. It has only one DLL and you can access the CD-ROM with only one line code.

Using the Code

This is very easy. Go to your destination project and add DLL as a reference, in this way -> project menu//add reference //Browse Tab// and locate DLL, then import it:

C#
using CdRom;

Then, with this code declare a new class:

C#
CDRom cd_rom = new CDRom();

For catching the name of CD-ROMs and printing in Listbox:

C#
foreach(string temp in cd_rom.CDRomName)
      listBox1.Items.Add(temp);

Name of all drives:

C#
foreach (string temp in cd_rom.DriveName)
        listBox1.Items.Add(temp);

A bool that indicates whether CD is inserted or not:

C#
cd_rom.CdinCDRom;

If CD inserted == true, then name(Label) of CD is:

C#
cd_rom.CdName;

And finally, string indicates the drive of CD-ROM:

C#
cd_rom.CdDriveName;

History

  • 31st March, 2009: Version 1,0,0
    This is the first version of this DLL and will be updated soon.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer Abtin CO.
Iran (Islamic Republic of) Iran (Islamic Republic of)
I'm engineer in Computer SCIENCE,i'm Work on indexing & software protection,and working in Abtin Co,

Comments and Discussions

 
-- There are no messages in this forum --