summaryrefslogtreecommitdiff
path: root/zen/resolve_path.h
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-09-22 07:42:14 -0400
committerB. Stack <bgstack15@gmail.com>2021-09-22 07:42:14 -0400
commit48646da5bc2c571e808fa5c88f33f719d1f0a7d5 (patch)
treed31b12c7f4022c0efc232f6647efc94d4ebdfc54 /zen/resolve_path.h
parentMerge branch 'b11.13' into 'master' (diff)
downloadFreeFileSync-48646da5bc2c571e808fa5c88f33f719d1f0a7d5.tar.gz
FreeFileSync-48646da5bc2c571e808fa5c88f33f719d1f0a7d5.tar.bz2
FreeFileSync-48646da5bc2c571e808fa5c88f33f719d1f0a7d5.zip
add upstream 11.14
Diffstat (limited to 'zen/resolve_path.h')
-rw-r--r--zen/resolve_path.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/zen/resolve_path.h b/zen/resolve_path.h
index f2c427f1..4a5fc8fe 100644
--- a/zen/resolve_path.h
+++ b/zen/resolve_path.h
@@ -13,15 +13,12 @@
namespace zen
{
-/*
- - expand macros
+/* - expand macros
- trim whitespace
- expand volume path by name
- convert relative paths into absolute
- => may block for slow USB sticks and idle HDDs
- => not thread-safe, see ::GetFullPathName()!
-*/
+ => may block for slow USB sticks and idle HDDs */
Zstring getResolvedFilePath(const Zstring& pathPhrase); //noexcept
//macro substitution only
bgstack15