How to write large content to disk dynamically using c sharp. Any tips or links are welcome.
I am trying to create a file (custom format and extension) and write to it. The user will download the file, and its contents will be converted to a stream of bytes and written to the file (filename.hd). Indexing downloaded files is done in another file (filename.hi).
This is great for me, when the file size "filename.hd" is 2 GB, if it exceeds 2 GB, it does not allow me to add content. That's my problem.
After googling, I found that a Windows FAT 32 based system (most versions) only supports 2 GB of file size. Is there any solution for me to handle this situation. Please let me know.
Thanks in advance Sree
source share