home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / os / mswindo / programm / win32 / 713 < prev    next >
Encoding:
Internet Message Format  |  1992-08-26  |  1.4 KB

  1. From: edwardm@hpcuhe.cup.hp.com (Edward McClanahan)
  2. Date: Thu, 27 Aug 1992 01:13:55 GMT
  3. Subject: Re: File system switches
  4. Message-ID: <98160004@hpcuhe.cup.hp.com>
  5. Organization: Hewlett Packard, Cupertino
  6. Path: sparky!uunet!elroy.jpl.nasa.gov!sdd.hp.com!hpscdc!hplextra!hpcc05!hpcuhb!hpcuhe!edwardm
  7. Newsgroups: comp.os.ms-windows.programmer.win32
  8. References: <2562@news.cerf.net>
  9. Lines: 24
  10.  
  11. > >Hello,
  12. > >    Does NT support a file system switch and stackable files
  13. > >systems similar to vnode based UNIXs? In particular would it be 
  14. > >possible to implement something similar to Sun Microsystem's 
  15. > >Translucent File System (TFS)?
  16.  
  17. > Windows NT's driver mechanism allows for the layering of drivers - file
  18. > systems are drivers which respond to the set of messages that the
  19. > i/o subsystem generates when requesting file services. They're not
  20. > "special" and don't have a different set of interfaces. All drivers
  21. > respond to messages which interest them, and pass them through to the
  22. > next driver in the chain if they're not interested.
  23.  
  24. > So indeed, you could layer any one file system on top of the services
  25. > of another to implement intelligent archiving systems, Sun TFS-like
  26. > systems, or simply something that turns a file delete into a rename! You
  27. > can implement compression file systems or make your 1.4Mb disk image on
  28. > your C: drive appear to be your I: drive
  29.  
  30. So, is this do-able with the SDK, or is the DDK required?
  31.  
  32. > Driver layering is useful!
  33.  
  34. Exactly!
  35.