Date: Tue, 31 Mar 1998 11:09:08 +0300 (IDT) From: Eli Zaretskii To: Stan Brown cc: djgpp AT delorie DOT com Subject: Re: LFN support enabled, no LFNs In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Mon, 30 Mar 1998, Stan Brown wrote: > My problem is that, even though the value of _USE_LFN is 1, I'm getting > back only 8.3-style filenames from _dos_findfirst() and _dos_findnext(). `_dos_findfirst' and `_dos_findnext' don't support long file names. Use the alternative functions `findfirst' and `findnext' instead. (This should be in the docs, but it isn't; I'll submit a patch for the next release.) Better yet, use `opendir' and `readdir' which also support long names, but are Posix-standard and will therefore work on a wider range of different platforms/compilers.