Top "Large-files" questions

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

What is the fastest way to create a checksum for large files in C#

I have to sync large files across some machines. The files can be up to 6GB in size. The sync …

c# .net large-files checksum
HTML5 - How to stream large .mp4 files?

I'm trying to setup a very basic html5 page that loads a .mp4 video that is 20MB. It appears that …

html video streaming large-files
Parsing Huge XML Files in PHP

I'm trying to parse the DMOZ content/structures XML files into MySQL, but all existing scripts to do this are …

php xml parsing large-files dmoz
Reading very large files in PHP

fopen is failing when I try to read in a very moderately sized file in PHP. A 6 meg file makes …

php file large-files
Large file upload with WebSocket

I'm trying to upload large files (at least 500MB, preferably up to a few GB) using the WebSocket API. The …

javascript html websocket large-files fileapi
python: read lines from compressed text files

Is it easy to read a line from a gz-compressed text file using python without extracting the file completely? I …

python large-files compression
Large file upload though html form (more than 2 GB)

Is there anyway to upload a file more than 2 GB, using simple html form upload? Previously I have been uploading …

html http file-upload large-files
How to read line-delimited JSON from large file (line by line)

I'm trying to load a large file (2GB in size) filled with JSON strings, delimited by newlines. Ex: { "key11": value11, "…

python json parsing large-files
Git with large files

Situation I have two servers, Production and Development. On Production server, there are two applications and multiple (6) databases (MySQL) which …

git large-files gitlab
Is there a memory efficient and fast way to load big json files in python?

I have some json files with 500MB. If I use the "trivial" json.load to load its content all at …

python json large-files