File tree 1 file changed +9
-2
lines changed
src/jdk.jpackage/share/native/common
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 28
28
29
29
#include " FileUtils.h"
30
30
31
-
32
31
namespace FileUtils {
33
32
34
33
#ifdef _WIN32
@@ -54,7 +53,15 @@ bool isDirSeparator(const tstring::value_type c) {
54
53
55
54
56
55
tstring dirname (const tstring &path) {
57
- tstring::size_type pos = path.find_last_of (_T (" \\ /" ));
56
+ tstring::size_type pos;
57
+ if (tstrings::endsWith (path, _T (" /." )) || tstrings::endsWith (path, _T (" \\ ." ))) {
58
+ // this method is really getparent dirname - if the path ends with "/.",
59
+ // we need to ignore that when looking for the last "/" to find parent
60
+ pos = (path.substr (0 , path.length () - 2 )).find_last_of (_T (" \\ /" ));
61
+ } else {
62
+ pos = path.find_last_of (_T (" \\ /" ));
63
+ }
64
+
58
65
if (pos != tstring::npos) {
59
66
pos = path.find_last_not_of (_T (" \\ /" ), pos); // skip trailing slashes
60
67
}
You can’t perform that action at this time.
0 commit comments