summaryrefslogtreecommitdiffstats
path: root/twrp-functions.cpp
diff options
context:
space:
mode:
authorVojtech Bocek <vbocek@gmail.com>2014-03-11 22:08:23 +0100
committerVojtech Bocek <vbocek@gmail.com>2014-03-13 14:55:12 +0100
commit05f87d6ccaa2d4666dd97cb1d2eeb88bd4e5306f (patch)
treecc437d7f9e3166215dbbd973486ec6a43a590bab /twrp-functions.cpp
parentCheck to ensure that selinux_handle is populated before using (diff)
downloadandroid_bootable_recovery-05f87d6ccaa2d4666dd97cb1d2eeb88bd4e5306f.tar
android_bootable_recovery-05f87d6ccaa2d4666dd97cb1d2eeb88bd4e5306f.tar.gz
android_bootable_recovery-05f87d6ccaa2d4666dd97cb1d2eeb88bd4e5306f.tar.bz2
android_bootable_recovery-05f87d6ccaa2d4666dd97cb1d2eeb88bd4e5306f.tar.lz
android_bootable_recovery-05f87d6ccaa2d4666dd97cb1d2eeb88bd4e5306f.tar.xz
android_bootable_recovery-05f87d6ccaa2d4666dd97cb1d2eeb88bd4e5306f.tar.zst
android_bootable_recovery-05f87d6ccaa2d4666dd97cb1d2eeb88bd4e5306f.zip
Diffstat (limited to 'twrp-functions.cpp')
-rw-r--r--twrp-functions.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/twrp-functions.cpp b/twrp-functions.cpp
index c50290df4..4551e84b4 100644
--- a/twrp-functions.cpp
+++ b/twrp-functions.cpp
@@ -274,6 +274,31 @@ unsigned long TWFunc::Get_File_Size(string Path) {
return st.st_size;
}
+std::string TWFunc::Remove_Trailing_Slashes(const std::string& path, bool leaveLast)
+{
+ std::string res;
+ size_t last_idx = 0, idx = 0;
+
+ while(last_idx != std::string::npos)
+ {
+ if(last_idx != 0)
+ res += '/';
+
+ idx = path.find_first_of('/', last_idx);
+ if(idx == std::string::npos) {
+ res += path.substr(last_idx, idx);
+ break;
+ }
+
+ res += path.substr(last_idx, idx-last_idx);
+ last_idx = path.find_first_not_of('/', idx);
+ }
+
+ if(leaveLast)
+ res += '/';
+ return res;
+}
+
#ifndef BUILD_TWRPTAR_MAIN
// Returns "/path" from a full /path/to/file.name