Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a counterpart of Mac OS-X filesystem bundles on Windows?

What I need is a directory which the user can handle as a single file in the Windows explorer. Does something like this exist? If not, what comes closest?

like image 562
S. Franke Avatar asked Sep 11 '25 03:09

S. Franke


2 Answers

The closest thing is probably Alternate Data Streams, although those are more akin to MacOS Named Forks than Bundles.

There are also some special cases, for example if you save a website with Internet Explorer you get an HTML file and a folder which are linked together.

like image 145
Jörg W Mittag Avatar answered Sep 12 '25 21:09

Jörg W Mittag


Depends on your particular needs. As mentioned above, named streams are possible (on NTFS), however you should notice that not all applications copy files with named streams correctly. In some scenarios regular ZIP archives can work (Explorer shows them as folders). If you are doing software development, there exist libraries that let you store many files in one container file (eg. SolFS).

like image 27
Eugene Mayevski 'Callback Avatar answered Sep 12 '25 21:09

Eugene Mayevski 'Callback