Come faccio a dividere un file molto grande in parti più piccole su Windows 10 e unirle su macOS High Sierra?
Io probabilmente userei 7zip (perché è gratuito, ma si potrebbe anche usare un'utilità commerciale, come WinZip) per creare un archivio in più parti, in questo esempio, chiamato zipfile, che avrebbe estensioni di file .zip, .z01, .z02, .z03, e così via per tante parti quante sono. Then, on the Mac, two terminal command lines can reconstitute the multi-part archive into one file and then extract it:
- zip -s 0 zipfile.zip --out fullzip.zip
- unzip fullzip.zip
Optionally, you could clean up the mess of zip files with
- rm zipfile.z??
- 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.