Top "Large-files" questions

Large files, whether binary or text, can sometimes be problematic even for an experienced programmer.

Very large uploads with PHP

I want to allow uploads of very large files into our PHP application (hundred of megs - 8 gigs). There are …

php upload large-files
Edit very large sql dump/text file (on linux)

I have to import a large mysql dump (up to 10G). However the sql dump already predefined with a database …

linux mysqldump large-files
Streaming large images using ASP.Net Webapi

We are trying to return large image files using ASP.Net WebApi and using the following code to stream the …

c# asp.net-web-api download streaming large-files
Good and effective CSV/TSV Reader for Java

I am trying to read big CSV and TSV (tab-separated) Files with about 1000000 rows or more. Now I tried to …

java csv large-files opencsv
How to efficiently write large files to disk on background thread (Swift)

Update I have resolved and removed the distracting error. Please read the entire post and feel free to leave comments …

ios swift multithreading large-files large-data
Is there a limit on PHP file_get_contents?

I am trying to read a large file (10M) using php file_get_contents $file = 'http://www.remoteserver.com/test.…

php file-get-contents large-files
PHP x86 How to get filesize of > 2 GB file without external program?

I need to get the file size of a file over 2 GB in size. (testing on 4.6 GB file). Is there …

php file-io x86 large-files filesize
Python Random Access File

Is there a Python file type for accessing random lines without traversing the whole file? I need to search within …

python file file-io large-files random-access
Binary search in a sorted (memory-mapped ?) file in Java

I am struggling to port a Perl program to Java, and learning Java as I go. A central component of …

java nio large-files binary-search memory-mapping