Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/installer/corehost/cli/apphost/bundle/dir_utils.h')
-rw-r--r--src/installer/corehost/cli/apphost/bundle/dir_utils.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/installer/corehost/cli/apphost/bundle/dir_utils.h b/src/installer/corehost/cli/apphost/bundle/dir_utils.h
new file mode 100644
index 00000000000..ffe0acffb60
--- /dev/null
+++ b/src/installer/corehost/cli/apphost/bundle/dir_utils.h
@@ -0,0 +1,24 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+#ifndef __DIR_UTIL_H__
+#define __DIR_UTIL_H__
+
+#include <cstdint>
+#include "pal.h"
+
+namespace bundle
+{
+ class dir_utils_t
+ {
+ public:
+ static bool has_dirs_in_path(const pal::string_t &path);
+ static void remove_directory_tree(const pal::string_t &path);
+ static void create_directory_tree(const pal::string_t &path);
+ static void fixup_path_separator(pal::string_t& path);
+ static bool rename_with_retries(pal::string_t& old_name, pal::string_t& new_name, bool &new_dir_exists);
+ };
+}
+
+#endif // __DIR_UTIL_H__