detecting hard drives and other volumes

Ask a Question related to Mac Programming, Design and Development.

  1. #1

    Default detecting hard drives and other volumes

    Hi,

    I'm using Carbon / OSX / C++ ...

    Is there a way of getting information about each volume (hard drive / CDROM
    / Network connection) at run time? In particular, I'd like to obtain the
    number of volumes, the name of each volume, and if possible, the type of the
    drive (HDD / CD / Network / Whatever).

    Also, assuming that every drive had a file on it, "myfile.txt", how could I
    access that file from within my code. Normally, if the file is in the
    curerent directory, I'd say
    handle = open ("myfile.txt");
    ....
    close(handle);

    but how do I construct a path to direct it to another volume?

    Thanks for any help you can provide.

    - Stephen Fraser


    Stephen Fraser Guest

  2. Similar Questions and Discussions

    1. volumes
      I have 4 buttons and I want them to play the same sound at four different volumes. can anyone help? Cheers George.
    2. Move Hard Disk Drives Between p630 and p615 - AIX 5.1
      We are in the process of setting up a loaner p630 server running AIX 5.1 while waiting on a p615 server to arrive. Since a number of application...
    3. Question on hard drives
      Hi, It won't 'automatically' start putting things on D:\, though you can configure it to hold the pagefile. You should start installing programs...
    4. Serial ATA hard drives
      I was just reading about these drives, specifically the Western Digital Raptor. Does anyone know if these drives are supported by Open Server...
    5. Stagger spinup of hard drives.
      I am putting together a new machine that will have four Maxtor ATLAS 10K III KU018L2 hard drives on it. The mother board has two Ultra/320 SCSI...
  3. #2

    Default Re: detecting hard drives and other volumes

    In article <3f42d770$1_1@news.iprimus.com.au>,
    "Stephen Fraser" <fraserq1@iprimus.com.au> wrote:
    > Is there a way of getting information about each volume (hard drive / CDROM
    > / Network connection) at run time? In particular, I'd like to obtain the
    > number of volumes, the name of each volume, and if possible, the type of the
    > drive (HDD / CD / Network / Whatever).
    I suspect MoreFilesX might do some of that.
    Sean McBride Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139