0

我想监视文件夹的更改并保存正在更改的文件的不同版本。我不想同步更改,而是维护一个被动存储库,将所有更改记录到文件夹中。有没有好的免费软件程序可以做到这一点?

我无法在文件夹中设置存储库,因为我对其只有只读权限。有什么建议么?

4

1 回答 1

0

VBackup可以解决问题!

从网站:

VBackup 是用于 Windows 的命令行程序,用于制作目录的备份副本。

它的功能类似于 XCOPY 和 ROBOCOPY,但是,VBackup 实现了文件版本控制。这意味着您不仅可以从最新备份中恢复文件,还可以从任何以前的备份中恢复它们。

VBackup 版本 0.7(免费软件) 版权所有 (c) 2010 Charles Prineas。版权所有。

用法:VBackup Source Destination [选项]

       Source   The directory to back up
  Destination   The directory where Source will be backed up to :: :: Options: ::
           /?   Display this help screen
           /C   Continue with backup if an error occurs
           /R   Restore the latest backup
          /RP   Restore previous backup (you will be prompted with available backups)
 /RP:YYYYMMDD   Restore backup made on YYYY/MM/DD
           /L   List Only - do not backup any files
           /Q   Quiet mode - suppress output
          /NS   Do not backup subdirectories
         /LSK   Log skipped files
         /LUN   Log unchanged files
         /NBS   Do not create a backup set

/IF file [file] 仅备份匹配名称/掩码的文件 /XF 文件 [file] 排除匹配名称/掩码的文件 /ID dir [dir] 仅备份匹配名称/掩码的目录 /XD dir [dir] 排除匹配名称/掩码的目录

/IFV 文件 [文件] 仅对匹配名称/掩码的文件进行版本备份 /XFV 文件 [文件] 不对匹配名称/掩码的文件进行版本备份

    /MAX:size   Do not back up files greater than size
   /MAXV:size   Do not make version backups of files greater than size

   /NAME:name   Give the backup a meaningful name (which can be used when restoring)
    /LOG:file   Output to log file (overwrite existing log)
   /LOG+:file   Output to log file (append to existing log)
 /UNILOG:file   Output to Unicode log file (overwrite existing log)
/UNILOG+:file   Output to Unicode log file (append to existing log) :: :: Examples: ::
   VBackup C:\Source D:\Backups\Source /XF *.tmp *.bak /XD Release Debug /NAME:"Version 11"
   VBackup /R D:\Backups\Source C:\Source.Restore
   VBackup /R /NAME:"Version 11" D:\Backups\Source "C:\Source.Version 11" :: :: Notes: ::
   Use quotes around names if they contain spaces
   Only ONE source directory can be specified
   File names (or masks) must be passed using /IF
   You can only restore to an empty (or non-existent) directory :: :: Contact: ::
   http://www.fileviewer.com/vbackup
于 2013-01-25T19:05:57.973 回答