mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-14 10:13:05 +02:00
32ca27a20b
Remove "File" and "Driver" from object names so they are shorter and easier to keep consistent. Also remove the "driver" directory so storage implementations are visible directly under "storage".
21 lines
848 B
Plaintext
21 lines
848 B
Plaintext
# ----------------------------------------------------------------------------------------------------------------------------------
|
|
# Storage Exports
|
|
# ----------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
MODULE = pgBackRest::LibC PACKAGE = pgBackRest::LibC
|
|
|
|
####################################################################################################################################
|
|
void
|
|
storagePosixPathRemove(path, errorOnMissing, recurse)
|
|
const char *path
|
|
bool errorOnMissing
|
|
bool recurse
|
|
CODE:
|
|
MEM_CONTEXT_XS_TEMP_BEGIN()
|
|
{
|
|
storagePathRemoveP(
|
|
storagePosixNew(strNew("/"), 0640, 750, true, NULL), strNew(path), .errorOnMissing = errorOnMissing,
|
|
.recurse = recurse);
|
|
}
|
|
MEM_CONTEXT_XS_TEMP_END();
|