Functions starting with backup create backups of a file, while functions starting with rotate do the same but also replace the original file with an empty one (this is useful for log rotation)

Note:: rotate() and co will not work reliable on filenames that contain dots but have no file extension (e.g. my.holiday.picture.jpg is OK but my.holiday.picture is not)

prune_backups() physically deletes all backups of a file based on max_backups

prune_backups() physically deletes all backups of a file based on max_backups

rotate(
  file,
  size = 1,
  max_backups = Inf,
  compression = FALSE,
  dir = dirname(file),
  create_file = TRUE,
  dry_run = FALSE,
  verbose = dry_run
)

backup(
  file,
  size = 0,
  max_backups = Inf,
  compression = FALSE,
  dir = dirname(file),
  dry_run = FALSE,
  verbose = dry_run
)

prune_backups(
  file,
  max_backups,
  dir = dirname(file),
  dry_run = FALSE,
  verbose = dry_run
)

prune_identical_backups(
  file,
  dir = dirname(file),
  dry_run = FALSE,
  verbose = dry_run
)

rotate_date(
  file,
  age = 1,
  size = 1,
  max_backups = Inf,
  compression = FALSE,
  format = "%Y-%m-%d",
  dir = dirname(file),
  overwrite = FALSE,
  create_file = TRUE,
  now = Sys.Date(),
  dry_run = FALSE,
  verbose = dry_run
)

backup_date(
  file,
  age = 1,
  size = 1,
  max_backups = Inf,
  compression = FALSE,
  format = "%Y-%m-%d",
  dir = dirname(file),
  overwrite = FALSE,
  now = Sys.Date(),
  dry_run = FALSE,
  verbose = dry_run
)

rotate_time(
  file,
  age = -1,
  size = 1,
  max_backups = Inf,
  compression = FALSE,
  format = "%Y-%m-%d--%H-%M-%S",
  dir = dirname(file),
  overwrite = FALSE,
  create_file = TRUE,
  now = Sys.time(),
  dry_run = FALSE,
  verbose = dry_run
)

backup_time(
  file,
  age = -1,
  size = 1,
  max_backups = Inf,
  compression = FALSE,
  format = "%Y-%m-%d--%H-%M-%S",
  dir = dirname(file),
  overwrite = FALSE,
  now = Sys.time(),
  dry_run = FALSE,
  verbose = dry_run
)

Arguments

file

character scalar: file to backup/rotate

size

scalar integer, character or Inf. Backup/rotate only if file is larger than this size. Integers are interpreted as bytes. You can pass character vectors that contain a file size suffix like 1k (kilobytes), 3M (megabytes), 4G (gigabytes), 5T (terabytes). Instead of these short forms you can also be explicit and use the IEC suffixes KiB, MiB, GiB, TiB. In Both cases 1 kilobyte is 1024 bytes, 1 megabyte is 1024 kilobytes, etc... .

(if age and size are provided, both criteria must be TRUE to trigger rotation)

max_backups

maximum number of backups to keep

  • an integer scalar: Maximum number of backups to keep

In addition for timestamped backups the following value are supported:

  • a Date scalar: Remove all backups before this date

  • a character scalar representing a Date in ISO format (e.g. "2019-12-31")

  • a character scalar representing an Interval in the form "<number> <interval>" (see below for more info)

compression

Whether or not backups should be compressed

  • FALSE for uncompressed backups,

  • TRUE for zip compression; uses zip()

  • a scalar integer between 1 and 9 to specify a compression level (requires the zip package, see its documentation for details)

  • the character scalars "utils::zip()" or "zip::zipr" to force a specific zip command

dir

character scalar. The directory in which the backups of file are stored (defaults to dirname(file))

create_file

logical scalar. If TRUE create an empty file in place of file after rotating.

dry_run

logical scalar. If TRUE no changes are applied to the file system (no files are created or deleted)

verbose

logical scalar. If TRUE additional informative messages are printed

age

minimum age after which to backup/rotate a file; can be

  • a character scalar representing an Interval in the form "<number> <interval>" (e.g. "2 months", see Intervals section below).

  • a Date or a character scalar representing a Date for a fixed point in time after which to backup/rotate. See format for which Date/Datetime formats are supported by rotor.

(if age and size are provided, both criteria must be TRUE to trigger rotation)

format

a scalar character that can be a subset of of valid strftime() formatting strings. The default setting is "%Y-%m-%d--%H-%M-%S".

  • You can use an arbitrary number of dashes anywhere in the format, so "%Y-%m-%d--%H-%M-%S" and "%Y%m%d%H%M%S" are both legal.

  • T and _ can also be used as separators. For example, the following datetime formats are also possible: %Y-%m-%d_%H-%M-%S (Python logging default), %Y%m%dT%H%M%S (ISO 8601)

  • All datetime components except %Y are optional. If you leave out part of the timestamp, the first point in time in the period is assumed. For example (assuming the current year is 2019) %Y is identical to 2019-01-01--00-00-00.

  • The timestamps must be lexically sortable, so "%Y-%m-%d" is legal, "%m-%d-%Y" and %Y-%d are not.

overwrite

logical scalar. If TRUE overwrite backups if a backup of the same name (usually due to timestamp collision) exists.

now

The current Date or time (POSIXct) as a scalar. You can pass a custom value here to to override the real system time. As a convenience you can also pass in character strings that follow the guidelines outlined above for format, but please note that these differ from the formats understood by as.POSIXct() or as.Date().

Value

file as a character scalar (invisibly)

Side Effects

backup(), backup_date(), and backup_time() may create files (if the specified conditions are met). They may also delete backups, based on max_backup.

rotate(), rotate_date() and rotate_time() do the same, but in addition delete the input file, or replace it with an empty file if create_file == TRUE (the default).

prune_backups() may delete files, depending on max_backups.

prune_backups() may delete files, depending on max_backups.

Intervals

In rotor, an interval is a character string in the form "<number> <interval>". The following intervals are possible: "day(s)", "week(s)", "month(s)", "quarter(s)", "year(s)". The plural "s" is optional (so "2 weeks" and "2 week" are equivalent). Please be aware that weeks are ISOweeks and start on Monday (not Sunday as in some countries).

Interval strings can be used as arguments when backing up or rotating files, or for pruning backup queues (i.e. limiting the number of backups of a single) file.

When rotating/backing up "1 months" means "make a new backup if the last backup is from the preceding month". E.g if the last backup of myfile is from 2019-02-01 then backup_time(myfile, age = "1 month") will only create a backup if the current date is at least 2019-03-01.

When pruning/limiting backup queues, "1 year" means "keep at least most one year worth of backups". So if you call backup_time(myfile, max_backups = "1 year") on 2019-03-01, it will create a backup and then remove all backups of myfile before 2019-01-01.

See also

Examples

# setup example file tf <- tempfile("test", fileext = ".rds") saveRDS(cars, tf) # create two backups of `tf`` backup(tf) backup(tf) list_backups(tf) # find all backups of a file
#> [1] "/tmp/RtmpOlTNDu/test23637d58757c.1.rds" #> [2] "/tmp/RtmpOlTNDu/test23637d58757c.2.rds"
# If `size` is set, a backup is only created if the target file is at least # that big. This is more useful for log rotation than for backups. backup(tf, size = "100 mb") # no backup becuase `tf` is to small list_backups(tf)
#> [1] "/tmp/RtmpOlTNDu/test23637d58757c.1.rds" #> [2] "/tmp/RtmpOlTNDu/test23637d58757c.2.rds"
# If `dry_run` is TRUE, backup() only shows what would happen without # actually creating or deleting files backup(tf, size = "0.1kb", dry_run = TRUE)
#> [dry_run] renaming:
#> [dry_run] ~ /tmp/RtmpOlTNDu/test23637d58757c.2.rds -> test23637d58757c.3.rds #> [dry_run] ~ /tmp/RtmpOlTNDu/test23637d58757c.1.rds -> test23637d58757c.2.rds
#> [dry_run] copying:
#> [dry_run] + /tmp/RtmpOlTNDu/test23637d58757c.rds -> test23637d58757c.1.rds
# rotate() is the same as backup(), but replaces `tf`` with an empty file rotate(tf) list_backups(tf)
#> [1] "/tmp/RtmpOlTNDu/test23637d58757c.1.rds" #> [2] "/tmp/RtmpOlTNDu/test23637d58757c.2.rds" #> [3] "/tmp/RtmpOlTNDu/test23637d58757c.3.rds"
#> [1] 0
#> [1] 289 289 289
# prune_backups() can remove old backups prune_backups(tf, 1) # keep only one backup list_backups(tf)
#> [1] "/tmp/RtmpOlTNDu/test23637d58757c.1.rds"
# rotate/backup_date() adds a date instead of an index # you should not mix index backups and timestamp backups # so we clean up first prune_backups(tf, 0) saveRDS(cars, tf) # backup_date() adds the date instead of an index to the filename backup_date(tf) # `age` sets the minimum age of the last backup before creating a new one. # the example below creates no new backup since it's less than a week # since the last. backup_date(tf, age = "1 week") # `now` overrides the current date. backup_date(tf, age = "1 year", now = "2999-12-31") list_backups(tf)
#> [1] "/tmp/RtmpOlTNDu/test23637d58757c.2999-12-31.rds"
# backup_time() creates backups with a full timestamp backup_time(tf) # It's okay to mix backup_date() and backup_time() list_backups(tf)
#> [1] "/tmp/RtmpOlTNDu/test23637d58757c.2999-12-31.rds"
# cleanup prune_backups(tf, 0) file.remove(tf)
#> [1] TRUE