bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#61326: Adding --no-add-suffix to zip patch


From: Adam Sjøgren
Subject: bug#61326: Adding --no-add-suffix to zip patch
Date: Tue, 07 Feb 2023 20:59:33 +0100
User-agent: Gnus/5.13 (Gnus v5.13)

Ruijie writes:

> Maybe, at least in the meantime, we change it such that all write
> operations for zip create files in temp, and move to / overwrite the
> original file when done? Although I don’t have a full understanding on
> how that would be done and whether there are problems along with it.

That sounds like a good solution, for archives with no '.' in the filename.

I guess the main problem is if the archive is huge, updating an existing
archive might (?) be more efficient than creating an entirely new one.

Another way to go about it could be to temporarily rename the archive to
have a name with a '.' in it, make the change, and then rename it back;
conceptually:

  mv a a.zip
  # update a.zip rather than a
  mv a.zip a

That has its own set of possible problems.

Maybe you could make a link to the original archive, where the link has
a '.' in the name, have zip update the file via the link and then remove
the link again; conceptually:

  ln a a.zip
  # update a.zip rather than a
  rm a.zip

I think I like this the most, but again...





reply via email to

[Prev in Thread] Current Thread [Next in Thread]