0

フォルダの変更を監視し、変更されているファイルのさまざまなバージョンを保存したいと考えています。変更を同期したくはありませんが、フォルダへのすべての変更を記録するパッシブ リポジトリを維持したいと考えています。これを行うための優れたフリーウェア プログラムはありますか?

フォルダーへの読み取り専用権限しかないため、フォルダーにリポジトリーをセットアップできません。助言がありますか?

4

1 に答える 1

0

VBackupはトリックを行います!

ウェブサイトから:

VBackup は、ディレクトリのバックアップ コピーを作成するために使用される Windows 用のコマンド ライン プログラムです。

XCOPY や ROBOCOPY と機能的に似ていますが、VBackup はファイルのバージョン管理を実装しています。これは、最新のバックアップからファイルを復元できるだけでなく、以前のバックアップからも復元できることを意味します。

VBackup バージョン 0.7 (フリーウェア) Copyright (c) 2010 Charles Prineas. 全著作権所有。

使用法: VBackup ソース デスティネーション [オプション]

       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 ファイル [ファイル] 名前/マスクに一致するバックアップ ファイルのみ /XF ファイル [ファイル] 名前/マスクに一致するファイルを除外 /ID dir [ディレクトリ] 名前/マスクに一致するバックアップ ディレクトリのみ /XD 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 に答える