So I downloaded this Pre-Installed game from a respected torrent site. But whenever I run the game, the bottom 5 files get updated/changed apparently. And this torrent goes to the error section in Qbittorrent. Now I have to delete the exe and other small files from my folder and redownload them again through this torrent else this torrent wouldn’t seed.

So I would not be able to seed those bottom 5 files unless I have a completely fresh install of the game ? and that means, I either have to unselect those bottom 5 files from my torrent client or create a copy of the game in another Folder so the exe and other python files don’t get updated as I play the game ?

  • black0ut@pawb.social
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 day ago

    No. Hardlinks and CoW filesystems are different things.

    I don’t know much about hardlinks on windows, but hardlinks usually are two different inodes pointing to the same file. This means, for the user, a single file appears duplicated, but without using any extra space. However, both files are really the same one, so if you modify one, the other one also gets modified.

    CoW filesystems, on the other hand, are a bit more complex. When you store a file, its contents get first stored, and then a file references them. When you copy the file, a copy of the reference is made, and there is no need to copy the content, because it’s already there. If you modify one of the copies, the difference between them gets stored (the modified content), but other parts of the file (or files in a folder) that don’t get modified are not duplicated.