Click here to Skip to main content
Click here to Skip to main content

Programmatic Refresh of a File System

By , 17 Apr 2005
 

Introduction

This is a short article, written after many hours spent on the problem of refreshing a CD file system after burning. At the end, the solution I've found is very very simple, so I've decided to explain it here.

The function

I've used a call to the BroadcastSystemMessage function to send a WM_DEVICECHANGE message to Windows (XP in my case). The function is defined as follows (found on MSDN):

long BroadcastSystemMessage(      
    DWORD dwFlags,
    LPDWORD lpdwRecipients,
    UINT uiMessage,
    WPARAM wParam,
    LPARAM lParam
);

To set the correct parameters for the call, I've initialized a DEV_BROADCAST_VOLUME struct, which is defined as:

typedef struct _DEV_BROADCAST_VOLUME {
  DWORD dbcv_size;
  DWORD dbcv_devicetype;
  DWORD dbcv_reserved;
  DWORD dbcv_unitmask;
  WORD dbcv_flags;
} DEV_BROADCAST_VOLUME, *PDEV_BROADCAST_VOLUME;

The code of my function is here:

bool RefreshFileSystem(char cdrive)
{
  DEV_BROADCAST_VOLUME hdr;
  long result;

  hdr.dbcv_size       =  sizeof(DEV_BROADCAST_VOLUME);
  hdr.dbcv_devicetype =  DBT_DEVTYP_VOLUME;
  hdr.dbcv_reserved = 0;
  cdrive = (char)_totupper(cdrive));  // thanks to Blake Miller
  hdr.dbcv_unitmask = 1 << (cdrive-'A');
  hdr.dbcv_flags  = DBTF_MEDIA;

  result = BroadcastSystemMessage(BSF_NOHANG|BSF_POSTMESSAGE,
                         NULL, WM_DEVICECHANGE, DBT_DEVICEARRIVAL,
                         (LPARAM)&hdr);
  return (result>=0);
}

I've heard of someone who used this kind of a solution but unfortunately the system crashed. I'm trying to find out what has caused the crash.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

shaman74
Web Developer
Italy Italy
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralC# code - Works for me on network drivesmembertheit851412-Jun-11 17:00 
GeneralPossible crash causessmemberSimon Owen25-Jun-06 21:58 
Questionquerymemberachalshah717-Mar-06 1:52 
GeneralSHChangeNotifymemberCabbi9-Jun-05 2:53 
Generalcan't refresh CDRW contentsussSergey Apollonov23-May-05 19:34 
GeneralCode Correction : Drive LettermemberBlake Miller12-Apr-05 4:30 
GeneralRe: Code Correction : Drive Lettermembershaman7412-Apr-05 5:17 
GeneralHhhhhhhhhhhhhhh !memberKochise7-Apr-05 23:24 
GeneralRe: Hhhhhhhhhhhhhhh !membershaman747-Apr-05 23:32 
GeneralRe: Hhhhhhhhhhhhhhh !memberOutlook14-Apr-05 10:41 
GeneralRe: Hhhhhhhhhhhhhhh !membershaman7414-Apr-05 20:52 
mmmmh...
how would you make it? suggestions?
 

 
Matteo
 
visit http://www.genhome.org
------------------------------
GeneralRe: Hhhhhhhhhhhhhhh !memberMX-Mauro18-Apr-05 1:20 
GeneralRe: Hhhhhhhhhhhhhhh !memberAndy N18-Apr-05 13:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 18 Apr 2005
Article Copyright 2005 by shaman74
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid