home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / os / mswindo / programm / win32 / 702 < prev    next >
Encoding:
Text File  |  1992-08-25  |  1.4 KB  |  36 lines

  1. Newsgroups: comp.os.ms-windows.programmer.win32
  2. Path: sparky!uunet!microsoft!hexnut!alistair
  3. From: alistair@microsoft.com (Alistair Banks)
  4. Subject: Re: File system switches
  5. Message-ID: <1992Aug25.174111.7715@microsoft.com>
  6. Date: 25 Aug 92 17:41:11 GMT
  7. Organization: Microsoft Corporation
  8. References: <2562@news.cerf.net>
  9. Distribution: usa
  10. Keywords: NT, file systems
  11. Lines: 23
  12.  
  13. In article <2562@news.cerf.net> boltr@nic.cerf.net (Rory Bolt) writes:
  14. >Hello,
  15. >    Does NT support a file system switch and stackable files
  16. >systems similar to vnode based UNIXs? In particular would it be 
  17. >possible to implement something similar to Sun Microsystem's 
  18. >Translucent File System (TFS)?
  19.  
  20. Windows NT's driver mechanism allows for the layering of drivers - file
  21. systems are drivers which respond to the set of messages that the
  22. i/o subsystem generates when requesting file services. They're not
  23. "special" and don't have a different set of interfaces. All drivers
  24. respond to messages which interest them, and pass them through to the
  25. next driver in the chain if they're not interested.
  26.  
  27. So indeed, you could layer any one file system on top of the services
  28. of another to implement intelligent archiving systems, Sun TFS-like
  29. systems, or simply something that turns a file delete into a rename! You
  30. can implement compression file systems or make your 1.4Mb disk image on
  31. your C: drive appear to be your I: drive
  32.  
  33. Driver layering is useful!
  34.  
  35. -- Alistair
  36.