Is there a USB file copy protocol that makes zip file copy faster?

2

I apologise that I cannot provide any source other than mentioning a quote from my friend. (This is almost a question for skeptics.stackexchange) He said there is a protocol because of which copying a zipped file into a pen drive is faster than copying the file unzipped, even if is 1MB in size.

He couldn't back it up, and I couldn't find any such protocol online. But since he said he read it somewhere, I just thought I'd ask here. If this question is inappropriate, please let me know in the comments and I'll delete it.

Update: The claim is that if the file size after zipping is 1MB and there is another unzipped file of size 1MB, the zipped file will get copied faster just because its a zipped file.

Nav

Posted 2018-09-10T09:41:26.823

Reputation: 913

If we could write "zipped" files faster, then what would stop us from writing "unzipped" files as if they were "zipped"? Data is just data... at this point nothing knows what the data represents (e.g: ZIP archive vs. image) – Attie – 2018-09-10T17:21:31.210

Answers

4

Copying a zipped file on any device is faster than copying the file unzipped, simply because it is smaller.

There is no other reason or protocol.

harrymc

Posted 2018-09-10T09:41:26.823

Reputation: 306 093

True, but the claim here (sorry for being unclear) was that copying a 1MB unzipped file is slower than copying a 1MB zipped file. – Nav – 2018-09-10T09:53:14.973

4I don't see any reason for that. A byte is a byte no matter the file. He might be referring to obscure copy methods that differ between ASCII text files and binary files, copying 7 bits instead of 8, but I don't know of any such. – harrymc – 2018-09-10T09:58:38.560

1Or referring to 1MB as the original (pre-zip) size. – user1686 – 2018-09-10T11:21:31.413

3

1MB of data is just 1MB of data, regardless of what format it is. From the computer's pointer of view it's just a stream of bits, so there's no reason that a 1MB zipped file would be copied faster

However an unzipped 1MB sparse file will be copied faster than a zipped file, since there's actually less data to write

phuclv

Posted 2018-09-10T09:41:26.823

Reputation: 14 930

1

There should be absolutely no difference in copying a 1MB zip file versus any other file which is 1MB in regards to speed.

However, if you were to copy a folder with 1,000 small files which add up to 1MB then you would notice a slowdown.

MonkeyZeus

Posted 2018-09-10T09:41:26.823

Reputation: 7 101