1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-01-18 04:58:51 +02:00

Update comments for storageExists() and driver functions.

This commit is contained in:
David Steele 2019-05-02 15:19:26 -04:00
parent 498017bcf0
commit 0c816f9481
4 changed files with 4 additions and 4 deletions

View File

@ -85,7 +85,7 @@ storageDriverPosixNew(
} }
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Does a file/path exist? Does a file exist? This function is only for files, not paths.
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
bool bool
storageDriverPosixExists(StorageDriverPosix *this, const String *path) storageDriverPosixExists(StorageDriverPosix *this, const String *path)

View File

@ -74,7 +74,7 @@ storageDriverRemoteNew(
} }
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Does a file/path exist? Does a file exist? This function is only for files, not paths.
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
bool bool
storageDriverRemoteExists(StorageDriverRemote *this, const String *path) storageDriverRemoteExists(StorageDriverRemote *this, const String *path)

View File

@ -408,7 +408,7 @@ storageDriverS3Request(
} }
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Does a file/path exist? Does a file exist? This function is only for files, not paths.
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
bool bool
storageDriverS3Exists(StorageDriverS3 *this, const String *path) storageDriverS3Exists(StorageDriverS3 *this, const String *path)

View File

@ -128,7 +128,7 @@ storageCopy(StorageFileRead *source, StorageFileWrite *destination)
} }
/*********************************************************************************************************************************** /***********************************************************************************************************************************
Does a file exist? This function is only for files, not directories. Does a file exist? This function is only for files, not paths.
***********************************************************************************************************************************/ ***********************************************************************************************************************************/
bool bool
storageExists(const Storage *this, const String *pathExp, StorageExistsParam param) storageExists(const Storage *this, const String *pathExp, StorageExistsParam param)