Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
788a9f76
Commit
788a9f76
authored
Feb 20, 2000
by
Petr Tomasek
Committed by
Alexandre Julliard
Feb 20, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GetLongPathName rewrite.
parent
cf1bcc49
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
17 deletions
+42
-17
dos_fs.c
files/dos_fs.c
+42
-17
No files found.
files/dos_fs.c
View file @
788a9f76
...
...
@@ -1001,27 +1001,52 @@ DWORD WINAPI GetLongPathNameA( LPCSTR shortpath, LPSTR longpath,
DWORD
longlen
)
{
DOS_FULL_NAME
full_name
;
char
*
p
;
char
*
longfilename
;
DWORD
shortpathlen
;
char
*
p
,
*
r
,
*
ll
,
*
ss
;
if
(
!
DOSFS_GetFullName
(
shortpath
,
TRUE
,
&
full_name
))
return
0
;
lstrcpynA
(
longpath
,
full_name
.
short_name
,
longlen
);
/* Do some hackery to get the long filename.
* FIXME: Would be better if it returned the
* long version of the directories too
*/
longfilename
=
strrchr
(
full_name
.
long_name
,
'/'
)
+
1
;
if
(
longpath
!=
NULL
)
{
if
((
p
=
strrchr
(
longpath
,
'\\'
))
!=
NULL
)
{
p
++
;
longlen
-=
(
p
-
longpath
);
lstrcpynA
(
p
,
longfilename
,
longlen
);
}
/* Do some hackery to get the long filename. */
if
(
longpath
)
{
ss
=
longpath
+
strlen
(
longpath
);
ll
=
full_name
.
long_name
+
strlen
(
full_name
.
long_name
);
p
=
NULL
;
while
(
ss
>=
longpath
)
{
/* FIXME: aren't we more paranoid, than needed? */
while
((
ss
[
0
]
==
'\\'
)
&&
(
ss
>=
longpath
))
ss
--
;
p
=
ss
;
while
((
ss
[
0
]
!=
'\\'
)
&&
(
ss
>=
longpath
))
ss
--
;
if
(
ss
>=
longpath
)
{
/* FIXME: aren't we more paranoid, than needed? */
while
((
ll
[
0
]
==
'/'
)
&&
(
ll
>=
full_name
.
long_name
))
ll
--
;
while
((
ll
[
0
]
!=
'/'
)
&&
(
ll
>=
full_name
.
long_name
))
ll
--
;
if
(
ll
<
full_name
.
long_name
)
{
ERR
(
"Bad longname! (ss=%s ll=%s)
\n
This should never happen !
\n
"
,
ss
,
ll
);
return
0
;
}
}
}
/* FIXME: fix for names like "C:\\" (ie. with more '\'s) */
if
(
p
&&
p
[
2
])
{
p
+=
1
;
if
((
p
-
longpath
)
>
0
)
longlen
-=
(
p
-
longpath
);
lstrcpynA
(
p
,
ll
,
longlen
);
/* Now, change all '/' to '\' */
for
(
r
=
p
;
r
<
(
p
+
longlen
);
r
++
)
if
(
r
[
0
]
==
'/'
)
r
[
0
]
=
'\\'
;
return
strlen
(
longpath
)
-
strlen
(
p
)
+
longlen
;
}
}
shortpathlen
=
((
strrchr
(
full_name
.
short_name
,
'\\'
)
-
full_name
.
short_name
)
+
1
);
return
shortpathlen
+
strlen
(
longfilename
);
return
strlen
(
longpath
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment