summaryrefslogtreecommitdiffstats
path: root/otautil/DirUtil.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-07-25 16:28:52 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-07-25 16:28:52 +0200
commit993cec5cc9ca780346d80625f9400d2e214f303a (patch)
treea8c7519223c05b17298488d2d66132f889c80577 /otautil/DirUtil.cpp
parentMerge "roots.cpp: Reformatting the file." (diff)
parentMerge "otautil: Delete dirUnlinkHierarchy()." (diff)
downloadandroid_bootable_recovery-993cec5cc9ca780346d80625f9400d2e214f303a.tar
android_bootable_recovery-993cec5cc9ca780346d80625f9400d2e214f303a.tar.gz
android_bootable_recovery-993cec5cc9ca780346d80625f9400d2e214f303a.tar.bz2
android_bootable_recovery-993cec5cc9ca780346d80625f9400d2e214f303a.tar.lz
android_bootable_recovery-993cec5cc9ca780346d80625f9400d2e214f303a.tar.xz
android_bootable_recovery-993cec5cc9ca780346d80625f9400d2e214f303a.tar.zst
android_bootable_recovery-993cec5cc9ca780346d80625f9400d2e214f303a.zip
Diffstat (limited to 'otautil/DirUtil.cpp')
-rw-r--r--otautil/DirUtil.cpp56
1 files changed, 0 insertions, 56 deletions
diff --git a/otautil/DirUtil.cpp b/otautil/DirUtil.cpp
index e08e360c0..ad344dedf 100644
--- a/otautil/DirUtil.cpp
+++ b/otautil/DirUtil.cpp
@@ -160,59 +160,3 @@ dirCreateHierarchy(const char *path, int mode,
}
return 0;
}
-
-int
-dirUnlinkHierarchy(const char *path)
-{
- struct stat st;
- DIR *dir;
- struct dirent *de;
- int fail = 0;
-
- /* is it a file or directory? */
- if (lstat(path, &st) < 0) {
- return -1;
- }
-
- /* a file, so unlink it */
- if (!S_ISDIR(st.st_mode)) {
- return unlink(path);
- }
-
- /* a directory, so open handle */
- dir = opendir(path);
- if (dir == NULL) {
- return -1;
- }
-
- /* recurse over components */
- errno = 0;
- while ((de = readdir(dir)) != NULL) {
- //TODO: don't blow the stack
- char dn[PATH_MAX];
- if (!strcmp(de->d_name, "..") || !strcmp(de->d_name, ".")) {
- continue;
- }
- snprintf(dn, sizeof(dn), "%s/%s", path, de->d_name);
- if (dirUnlinkHierarchy(dn) < 0) {
- fail = 1;
- break;
- }
- errno = 0;
- }
- /* in case readdir or unlink_recursive failed */
- if (fail || errno < 0) {
- int save = errno;
- closedir(dir);
- errno = save;
- return -1;
- }
-
- /* close directory handle */
- if (closedir(dir) < 0) {
- return -1;
- }
-
- /* delete target directory */
- return rmdir(path);
-}