Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering how for example dropbox or a NAS is coping with the different file systems on different operating systems when sharing a folder? I was reading more about the different file systems and noticed that they all have their size limits or they all save their files in a different way. But how is it made possible to have shared network folders between these different operating systems and their file systems?

Because for example a FAT32 file system cannot have files larger than 4GB. But what if a user with a NTFS file system shares a folder with somebody with a FAT32 file system. And the one with NTFS puts a file of 5GB in that folder. What will happen? Is there something special that will happen ? Or how do for example a NAS or dropbox cope with this ?

Can someone explain this a bit ? Or could you point me to something where I can find further information about?

share|improve this question

closed as off topic by Eugene Mayevski 'EldoS Corp, Paul R, Joachim Isaksson, rds, Martin Buberl Jan 14 at 0:53

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Basically, Dropbox (and all other sync services I know) least common denominator approach for file size (This means 4G max), attributes (none), versioning (none) and data stream count (one single).

This abstracts away the differences in a procrustres-principal way.

What remains are file system persmission, and these are maintained by the dropbox client, which has access to the local OS and so knows what it can and can't do.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.