VictoriaMetrics/lib/backup
Aliaksandr Valialkin f5c4fcc250
lib/backup: consistently use path.Join() when constructing paths for s3, gs and azblob
E.g. replace `fs.Dir + filePath` with `path.Join(fs.Dir, filePath)`

The fs.Dir is guaranteed to end with slash - see Init() functions.
The filePath may start with slash. If it starts with slash, then `fs.Dir + filePath` constructs
an incorrect path with double slashes.
path.Join() properly substitutes duplicate slashes with a single slash in this case.

While at it, also substitute incorrect usage of filepath.Join() with path.Join()
for constructing paths to object storage systems, which expect forward slashes in paths.
filepath.Join() substittues forward slashes with backslashes on Windows, so this may break
creating or managing backups from Windows.

This is a follow-up for 0399367be602b577baf6a872ca81bf0f99ba401b
Updates https://github.com/VictoriaMetrics/VictoriaMetrics-enterprise/pull/719
2023-12-04 10:34:39 +02:00
..
actions fixed error when creating a full backup using the -origin flag (#5180) 2023-10-16 12:02:51 +02:00
azremote lib/backup: consistently use path.Join() when constructing paths for s3, gs and azblob 2023-12-04 10:34:39 +02:00
backupnames fix removing storage data dir before restoring from backup (#598) 2023-07-06 14:16:18 -07:00
common lib/backup: consistently use path.Join() when constructing paths for s3, gs and azblob 2023-12-04 10:34:39 +02:00
fscommon lib/backup/common: consistently use canonical path with / directory separators at Part.Path 2023-09-18 16:15:34 +02:00
fslocal lib/backup/common: consistently use canonical path with / directory separators at Part.Path 2023-09-18 16:15:34 +02:00
fsnil lib/backup: add MustStop() method for all remote filesystems 2020-10-09 15:32:19 +03:00
fsremote lib/backup/common: consistently use canonical path with / directory separators at Part.Path 2023-09-18 16:15:34 +02:00
gcsremote lib/backup: consistently use path.Join() when constructing paths for s3, gs and azblob 2023-12-04 10:34:39 +02:00
s3remote lib/backup: consistently use path.Join() when constructing paths for s3, gs and azblob 2023-12-04 10:34:39 +02:00