[Bug 3028] FindFirstFile and directory/file names

Wine Bugs wine-bugs at winehq.org
Sat Sep 10 10:08:14 CDT 2005


http://bugs.winehq.org/show_bug.cgi?id=3028





------- Additional Comments From kelfe at gmx.de  2005-10-09 10:08 -------
Created an attachment (id=1019)
 --> (http://bugs.winehq.org/attachment.cgi?id=1019&action=view)
patch to solve this problem but could break a lot other things

output from the testcase

wine-cvs:
FindFirstFile cache/*.*
failed with error 2: File not found
FindFirstFile cache/Browser/*.*
failed with error 3: Path not found
FindFirstFile cache/foo.bar
failed with error 2: File not found
CreateFile c:\foo\bar.txt
failed with error 3: Path not found
CreateFile c:\foo\
failed with error 2: File not found
CreateFile c:\foo\*.*
failed with error 123: Invalid name

Win XP:
FindFirstFile cache/*.*
failed with error 3: Das System kann den angegebenen Pfad nicht finden.
FindFirstFile cache/Browser/*.*
failed with error 3: Das System kann den angegebenen Pfad nicht finden.
FindFirstFile cache/foo.bar
failed with error 3: Das System kann den angegebenen Pfad nicht finden.
CreateFile c:\foo\bar.txt
failed with error 3: Das System kann den angegebenen Pfad nicht finden.
CreateFile c:\foo\
failed with error 2: Das System kann die angegebene Datei nicht finden.
CreateFile c:\foo\*.*
failed with error 3: Das System kann den angegebenen Pfad nicht finden.

wine-cvs + patch:
FindFirstFile cache/*.*
failed with error 3: Path not found
FindFirstFile cache/Browser/*.*
failed with error 3: Path not found
FindFirstFile cache/foo.bar
failed with error 3: Path not found
CreateFile c:\foo\bar.txt
failed with error 3: Path not found
CreateFile c:\foo\
failed with error 2: File not found
CreateFile c:\foo\*.*
failed with error 3: Path not found


-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the wine-bugs mailing list