Comment diviser un très gros fichier en parties plus petites sur Windows 10, et les joindre ensemble sur macOS High Sierra


Comment diviser un très gros fichier en parties plus petites sur Windows 10, et les joindre ensemble sur macOS High Sierra ?

J'utiliserais probablement 7zip (parce qu'il'est gratuit, mais vous pourriez aussi utiliser un utilitaire commercial, comme WinZip) pour créer une archive en plusieurs parties, dans cet exemple, nommée zipfile, qui aurait des extensions de fichier .zip, .z01, .z02, .z03, et ainsi de suite pour autant de parties qu'il y en a. Then, on the Mac, two terminal command lines can reconstitute the multi-part archive into one file and then extract it:

  1. zip -s 0 zipfile.zip --out fullzip.zip 
  2. unzip fullzip.zip 

Optionally, you could clean up the mess of zip files with

  1. rm zipfile.z?? 
  2. rm fullzip.zip 

If you prefer a GUI, rather than the command line, you could use something like Stuffit Expander or Unarchiver and then use Finder to clean up the zip files.

EDIT:

Of course, if you have a large enough flash drive, or the PC and Mac are on the same network, then you could save yourself a lot of trouble and just transfer the file, directly.