From 91862ed0d3a4612ad754c74cf60df3e6def22115 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Tue, 4 Dec 2007 21:05:10 +0000 Subject: [PATCH] add switch_file_rename git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6502 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/include/switch_apr.h | 2 ++ src/switch_apr.c | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/src/include/switch_apr.h b/src/include/switch_apr.h index 601fb74ff2..b4a0d96184 100644 --- a/src/include/switch_apr.h +++ b/src/include/switch_apr.h @@ -720,6 +720,8 @@ SWITCH_DECLARE(switch_status_t) switch_file_close(switch_file_t * thefile); */ SWITCH_DECLARE(switch_status_t) switch_file_remove(const char *path, switch_memory_pool_t *pool); +SWITCH_DECLARE(switch_status_t) switch_file_rename(const char *from_path, const char *to_path, switch_memory_pool_t *pool); + /** * Read data from the specified file. * @param thefile The file descriptor to read from. diff --git a/src/switch_apr.c b/src/switch_apr.c index 33ca647b25..2f34e001f7 100644 --- a/src/switch_apr.c +++ b/src/switch_apr.c @@ -328,6 +328,11 @@ SWITCH_DECLARE(switch_status_t) switch_file_close(switch_file_t * thefile) return apr_file_close(thefile); } +SWITCH_DECLARE(switch_status_t) switch_file_rename(const char *from_path, const char *to_path, switch_memory_pool_t *pool) +{ + return apr_file_rename(from_path, to_path, pool); +} + SWITCH_DECLARE(switch_status_t) switch_file_remove(const char *path, switch_memory_pool_t *pool) { return apr_file_remove(path, pool);