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 ?

  • GingerBreadMan@lemmy.dbzer0.comOP
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    1
    ·
    1 day ago

    Is this similar to hardlinking and insta move cause I use Windows ?

    I use a cross-seed program that does something similar, it creates a copy of files without it taking twice the space on the disk.

    So should I just create another folder and hardlink the game and lib folder there, and copy the rest of the small files into that folder, so the original torrent directory is undisturbed whenever I open the exe in the newly created folder ?

    • 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.