Is there a copy of Mac OS-X file system packages on Windows?

I need a directory that the user can process as a single file in Windows Explorer. Does something like this exist? If not, which is the closest?

+3
source share
3 answers

Depends on your specific needs. As mentioned above, named streams are possible (in NTFS), however, you should note that not all applications correctly copy files with named streams. Regular ZIP archives may work in some scenarios (Explorer displays them as folders). If you are developing software, there are libraries that allow you to store many files in one container file (for example, SolFS ).

+1
source

The next thing is probably alternative data streams, although they are more similar to the MacOS Named Forks than the Bundles.

, , Internet Explorer, HTML , .

0

I think you can create a folder with the extension, for example. Myfolder.bundle, then you can associate this extension with a custom icon. Thus, it looks like a bundle with respect to the end user.

0
source

Source: https://habr.com/ru/post/1755641/


All Articles