复制使用 Ruby 的文件
我需要使用 ruby 脚本复制 Windows 使用的一些文件。操作系统为 Windows XP 或 Windows 7,均为 32 位。任何人都可以向我指出一些有关使用 ruby 进行卷影复制的信息吗?有宝石吗?我更喜欢一个不需要管理员权限但可以正常工作的解决方案。
我也有兴趣在处理/删除之前检查文件是否正在使用。预先感谢您的帮助。
I need to copy some files that are in use by windows with a ruby script. The OS will either be Windows XP or Windows 7 both 32-bit. Can anyone point me to some information on using Volume Shadow copy with ruby? Is there a gem for this? I would prefer a solution that does not require administrator privileges but whatever works.
I would also be interested in checking if a file is in use before coping / deleting. Thanks in advance for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有用于此目的的 Ruby 库,您可以使用 Windows 卷影复制 API 直接通过 Ruby 的 WIN32 API(或 WIN32 OLE,如果有的话)。 这里有一个关于使用 Win32API 的有用线程。
If there isn't a Ruby library for that purpose you could just use the Windows Volume Shadow Copy API directly via Ruby's WIN32 API (or WIN32 OLE, if available). Here's a useful thread on using Win32API.