summaryrefslogtreecommitdiff
path: root/zen/resolve_path.h
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-09-22 17:10:13 +0000
committerB. Stack <bgstack15@gmail.com>2021-09-22 17:10:13 +0000
commit3d25861e22291e03183742bac434e540ccc625b4 (patch)
treed31b12c7f4022c0efc232f6647efc94d4ebdfc54 /zen/resolve_path.h
parentMerge branch 'b11.13' into 'master' (diff)
parentadd upstream 11.14 (diff)
downloadFreeFileSync-3d25861e22291e03183742bac434e540ccc625b4.tar.gz
FreeFileSync-3d25861e22291e03183742bac434e540ccc625b4.tar.bz2
FreeFileSync-3d25861e22291e03183742bac434e540ccc625b4.zip
Merge branch 'b11.14' into 'master'11.14
add upstream 11.14 See merge request opensource-tracking/FreeFileSync!38
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