上下文菜单下的 7zip 时间戳存档

发布于 2024-08-31 14:59:27 字数 130 浏览 7 评论 0原文

有谁知道如何添加一个上下文菜单项来压缩文件夹并添加时间戳?这样我就可以右键单击一个文件夹,它会给我一个创建类似以下内容的选项:folder_20100528.zip

(我将其发布在这里,因为我认为这是通过批处理文件/代码完成的)

Does anyone know how I can add a context menu item that would compress a folder and add a timestamp? So that I can right-click a folder and it would give me the option to create something like this: folder_20100528.zip

(I'm posting it here because I figure it's something that's done through a batch file/code)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

人│生佛魔见 2024-09-07 14:59:27

批处理脚本应该相当简单,因此创建它并将其放入 C:\

在 XP 上:

  • 然后打开资源管理器并单击“工具”-> 批处理脚本。 “文件夹选项”菜单。
  • 选择“文件类型”选项卡。
  • 向下滚动扩展列表,直到找到“文件夹”,然后突出显示它。
  • 单击“高级”按钮
  • 这将打开一个新窗口,您可以在其中创建“操作”(例如上下文菜单项)。
  • 只需创建一个新的,将其命名为您想要的名称,然后设置要发送到批处理文件中的参数即可。

The batch script should be reasonably simple, so create it and throw it in C:\

On XP:

  • Then open explorer and click the 'Tools' -> 'Folder Options' menu.
  • Select the 'File Types' tab.
  • Scroll down the extensions list until you find 'File Folder', and highlight it.
  • Click the 'Advanced' Button
  • This will open a new window, where you can create 'actions' (eg context menu items).
  • Simply make a new one, call it what you want, and set up the parameters to send into the batch file.
空心↖ 2024-09-07 14:59:27

批处理脚本是我试图弄清楚的; )

SET ZIPPATH="C:\Program Files\7-Zip\7z.exe"
SET TIMESTAMP=%date:~6,4%%date:~3,2%%date:~0,2%-%Time:~0,2%%Time:~3,2%
%ZIPPATH% a -tzip "YRH_%TIMESTAMP%" "YRH\*" 

现在我只是使用我放入目录中的 .bat 文件,稍后我将尝试实现其余部分,

谢谢

the batch script is what I was trying to figure out ; )

SET ZIPPATH="C:\Program Files\7-Zip\7z.exe"
SET TIMESTAMP=%date:~6,4%%date:~3,2%%date:~0,2%-%Time:~0,2%%Time:~3,2%
%ZIPPATH% a -tzip "YRH_%TIMESTAMP%" "YRH\*" 

for now I'm just using a .bat file that I dropped in the directory, I'll try to implement the rest later

thanks

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文