quartz: Only allocate 1 buffer in transform filter.
[wine/wine64.git] / dlls / msvcrt / dir.c
blob0a28c595c4f5ce578dac55cb4cad96dc0d92b6eb
1 /*
2 * msvcrt.dll drive/directory functions
4 * Copyright 1996,1998 Marcus Meissner
5 * Copyright 1996 Jukka Iivonen
6 * Copyright 1997,2000 Uwe Bonnes
7 * Copyright 2000 Jon Griffiths
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "config.h"
25 #include "wine/port.h"
27 #include <stdarg.h>
28 #include <time.h>
30 #include "windef.h"
31 #include "winbase.h"
32 #include "winternl.h"
33 #include "wine/unicode.h"
34 #include "msvcrt.h"
35 #include "wine/debug.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
39 /* INTERNAL: Translate WIN32_FIND_DATAA to finddata_t */
40 static void msvcrt_fttofd( const WIN32_FIND_DATAA *fd, struct MSVCRT__finddata_t* ft)
42 DWORD dw;
44 if (fd->dwFileAttributes == FILE_ATTRIBUTE_NORMAL)
45 ft->attrib = 0;
46 else
47 ft->attrib = fd->dwFileAttributes;
49 RtlTimeToSecondsSince1970( (const LARGE_INTEGER *)&fd->ftCreationTime, &dw );
50 ft->time_create = dw;
51 RtlTimeToSecondsSince1970( (const LARGE_INTEGER *)&fd->ftLastAccessTime, &dw );
52 ft->time_access = dw;
53 RtlTimeToSecondsSince1970( (const LARGE_INTEGER *)&fd->ftLastWriteTime, &dw );
54 ft->time_write = dw;
55 ft->size = fd->nFileSizeLow;
56 strcpy(ft->name, fd->cFileName);
59 /* INTERNAL: Translate WIN32_FIND_DATAW to wfinddata_t */
60 static void msvcrt_wfttofd( const WIN32_FIND_DATAW *fd, struct MSVCRT__wfinddata_t* ft)
62 DWORD dw;
64 if (fd->dwFileAttributes == FILE_ATTRIBUTE_NORMAL)
65 ft->attrib = 0;
66 else
67 ft->attrib = fd->dwFileAttributes;
69 RtlTimeToSecondsSince1970( (const LARGE_INTEGER *)&fd->ftCreationTime, &dw );
70 ft->time_create = dw;
71 RtlTimeToSecondsSince1970( (const LARGE_INTEGER *)&fd->ftLastAccessTime, &dw );
72 ft->time_access = dw;
73 RtlTimeToSecondsSince1970( (const LARGE_INTEGER *)&fd->ftLastWriteTime, &dw );
74 ft->time_write = dw;
75 ft->size = fd->nFileSizeLow;
76 strcpyW(ft->name, fd->cFileName);
79 /* INTERNAL: Translate WIN32_FIND_DATAA to finddatai64_t */
80 static void msvcrt_fttofdi64( const WIN32_FIND_DATAA *fd, struct MSVCRT__finddatai64_t* ft)
82 DWORD dw;
84 if (fd->dwFileAttributes == FILE_ATTRIBUTE_NORMAL)
85 ft->attrib = 0;
86 else
87 ft->attrib = fd->dwFileAttributes;
89 RtlTimeToSecondsSince1970( (const LARGE_INTEGER *)&fd->ftCreationTime, &dw );
90 ft->time_create = dw;
91 RtlTimeToSecondsSince1970( (const LARGE_INTEGER *)&fd->ftLastAccessTime, &dw );
92 ft->time_access = dw;
93 RtlTimeToSecondsSince1970( (const LARGE_INTEGER *)&fd->ftLastWriteTime, &dw );
94 ft->time_write = dw;
95 ft->size = ((__int64)fd->nFileSizeHigh) << 32 | fd->nFileSizeLow;
96 strcpy(ft->name, fd->cFileName);
99 /* INTERNAL: Translate WIN32_FIND_DATAW to wfinddatai64_t */
100 static void msvcrt_wfttofdi64( const WIN32_FIND_DATAW *fd, struct MSVCRT__wfinddatai64_t* ft)
102 DWORD dw;
104 if (fd->dwFileAttributes == FILE_ATTRIBUTE_NORMAL)
105 ft->attrib = 0;
106 else
107 ft->attrib = fd->dwFileAttributes;
109 RtlTimeToSecondsSince1970( (const LARGE_INTEGER *)&fd->ftCreationTime, &dw );
110 ft->time_create = dw;
111 RtlTimeToSecondsSince1970( (const LARGE_INTEGER *)&fd->ftLastAccessTime, &dw );
112 ft->time_access = dw;
113 RtlTimeToSecondsSince1970( (const LARGE_INTEGER *)&fd->ftLastWriteTime, &dw );
114 ft->time_write = dw;
115 ft->size = ((__int64)fd->nFileSizeHigh) << 32 | fd->nFileSizeLow;
116 strcpyW(ft->name, fd->cFileName);
119 /*********************************************************************
120 * _chdir (MSVCRT.@)
122 * Change the current working directory.
124 * PARAMS
125 * newdir [I] Directory to change to
127 * RETURNS
128 * Success: 0. The current working directory is set to newdir.
129 * Failure: -1. errno indicates the error.
131 * NOTES
132 * See SetCurrentDirectoryA.
134 int CDECL MSVCRT__chdir(const char * newdir)
136 if (!SetCurrentDirectoryA(newdir))
138 msvcrt_set_errno(newdir?GetLastError():0);
139 return -1;
141 return 0;
144 /*********************************************************************
145 * _wchdir (MSVCRT.@)
147 * Unicode version of _chdir.
149 int CDECL _wchdir(const MSVCRT_wchar_t * newdir)
151 if (!SetCurrentDirectoryW(newdir))
153 msvcrt_set_errno(newdir?GetLastError():0);
154 return -1;
156 return 0;
159 /*********************************************************************
160 * _chdrive (MSVCRT.@)
162 * Change the current drive.
164 * PARAMS
165 * newdrive [I] Drive number to change to (1 = 'A', 2 = 'B', ...)
167 * RETURNS
168 * Success: 0. The current drive is set to newdrive.
169 * Failure: -1. errno indicates the error.
171 * NOTES
172 * See SetCurrentDirectoryA.
174 int CDECL _chdrive(int newdrive)
176 WCHAR buffer[3] = {'A', ':', 0};
178 buffer[0] += newdrive - 1;
179 if (!SetCurrentDirectoryW( buffer ))
181 msvcrt_set_errno(GetLastError());
182 if (newdrive <= 0)
183 *MSVCRT__errno() = MSVCRT_EACCES;
184 return -1;
186 return 0;
189 /*********************************************************************
190 * _findclose (MSVCRT.@)
192 * Close a handle returned by _findfirst().
194 * PARAMS
195 * hand [I] Handle to close
197 * RETURNS
198 * Success: 0. All resources associated with hand are freed.
199 * Failure: -1. errno indicates the error.
201 * NOTES
202 * See FindClose.
204 int CDECL MSVCRT__findclose(long hand)
206 TRACE(":handle %ld\n",hand);
207 if (!FindClose((HANDLE)hand))
209 msvcrt_set_errno(GetLastError());
210 return -1;
212 return 0;
215 /*********************************************************************
216 * _findfirst (MSVCRT.@)
218 * Open a handle for iterating through a directory.
220 * PARAMS
221 * fspec [I] File specification of files to iterate.
222 * ft [O] Information for the first file found.
224 * RETURNS
225 * Success: A handle suitable for passing to _findnext() and _findclose().
226 * ft is populated with the details of the found file.
227 * Failure: -1. errno indicates the error.
229 * NOTES
230 * See FindFirstFileA.
232 long CDECL MSVCRT__findfirst(const char * fspec, struct MSVCRT__finddata_t* ft)
234 WIN32_FIND_DATAA find_data;
235 HANDLE hfind;
237 hfind = FindFirstFileA(fspec, &find_data);
238 if (hfind == INVALID_HANDLE_VALUE)
240 msvcrt_set_errno(GetLastError());
241 return -1;
243 msvcrt_fttofd(&find_data,ft);
244 TRACE(":got handle %p\n",hfind);
245 return (long)hfind;
248 /*********************************************************************
249 * _wfindfirst (MSVCRT.@)
251 * Unicode version of _findfirst.
253 long CDECL MSVCRT__wfindfirst(const MSVCRT_wchar_t * fspec, struct MSVCRT__wfinddata_t* ft)
255 WIN32_FIND_DATAW find_data;
256 HANDLE hfind;
258 hfind = FindFirstFileW(fspec, &find_data);
259 if (hfind == INVALID_HANDLE_VALUE)
261 msvcrt_set_errno(GetLastError());
262 return -1;
264 msvcrt_wfttofd(&find_data,ft);
265 TRACE(":got handle %p\n",hfind);
266 return (long)hfind;
269 /*********************************************************************
270 * _findfirsti64 (MSVCRT.@)
272 * 64-bit version of _findfirst.
274 long CDECL MSVCRT__findfirsti64(const char * fspec, struct MSVCRT__finddatai64_t* ft)
276 WIN32_FIND_DATAA find_data;
277 HANDLE hfind;
279 hfind = FindFirstFileA(fspec, &find_data);
280 if (hfind == INVALID_HANDLE_VALUE)
282 msvcrt_set_errno(GetLastError());
283 return -1;
285 msvcrt_fttofdi64(&find_data,ft);
286 TRACE(":got handle %p\n",hfind);
287 return (long)hfind;
290 /*********************************************************************
291 * _wfindfirsti64 (MSVCRT.@)
293 * Unicode version of _findfirsti64.
295 long CDECL MSVCRT__wfindfirsti64(const MSVCRT_wchar_t * fspec, struct MSVCRT__wfinddatai64_t* ft)
297 WIN32_FIND_DATAW find_data;
298 HANDLE hfind;
300 hfind = FindFirstFileW(fspec, &find_data);
301 if (hfind == INVALID_HANDLE_VALUE)
303 msvcrt_set_errno(GetLastError());
304 return -1;
306 msvcrt_wfttofdi64(&find_data,ft);
307 TRACE(":got handle %p\n",hfind);
308 return (long)hfind;
311 /*********************************************************************
312 * _findnext (MSVCRT.@)
314 * Find the next file from a file search handle.
316 * PARAMS
317 * hand [I] Handle to the search returned from _findfirst().
318 * ft [O] Information for the file found.
320 * RETURNS
321 * Success: 0. ft is populated with the details of the found file.
322 * Failure: -1. errno indicates the error.
324 * NOTES
325 * See FindNextFileA.
327 int CDECL MSVCRT__findnext(long hand, struct MSVCRT__finddata_t * ft)
329 WIN32_FIND_DATAA find_data;
331 if (!FindNextFileA((HANDLE)hand, &find_data))
333 *MSVCRT__errno() = MSVCRT_ENOENT;
334 return -1;
337 msvcrt_fttofd(&find_data,ft);
338 return 0;
341 /*********************************************************************
342 * _wfindnext (MSVCRT.@)
344 * Unicode version of _findnext.
346 int CDECL MSVCRT__wfindnext(long hand, struct MSVCRT__wfinddata_t * ft)
348 WIN32_FIND_DATAW find_data;
350 if (!FindNextFileW((HANDLE)hand, &find_data))
352 *MSVCRT__errno() = MSVCRT_ENOENT;
353 return -1;
356 msvcrt_wfttofd(&find_data,ft);
357 return 0;
360 /*********************************************************************
361 * _findnexti64 (MSVCRT.@)
363 * 64-bit version of _findnext.
365 int CDECL MSVCRT__findnexti64(long hand, struct MSVCRT__finddatai64_t * ft)
367 WIN32_FIND_DATAA find_data;
369 if (!FindNextFileA((HANDLE)hand, &find_data))
371 *MSVCRT__errno() = MSVCRT_ENOENT;
372 return -1;
375 msvcrt_fttofdi64(&find_data,ft);
376 return 0;
379 /*********************************************************************
380 * _wfindnexti64 (MSVCRT.@)
382 * Unicode version of _findnexti64.
384 int CDECL MSVCRT__wfindnexti64(long hand, struct MSVCRT__wfinddatai64_t * ft)
386 WIN32_FIND_DATAW find_data;
388 if (!FindNextFileW((HANDLE)hand, &find_data))
390 *MSVCRT__errno() = MSVCRT_ENOENT;
391 return -1;
394 msvcrt_wfttofdi64(&find_data,ft);
395 return 0;
398 /*********************************************************************
399 * _getcwd (MSVCRT.@)
401 * Get the current working directory.
403 * PARAMS
404 * buf [O] Destination for current working directory.
405 * size [I] Size of buf in characters
407 * RETURNS
408 * Success: If buf is NULL, returns an allocated string containing the path.
409 * Otherwise populates buf with the path and returns it.
410 * Failure: NULL. errno indicates the error.
412 char* CDECL _getcwd(char * buf, int size)
414 char dir[MAX_PATH];
415 int dir_len = GetCurrentDirectoryA(MAX_PATH,dir);
417 if (dir_len < 1)
418 return NULL; /* FIXME: Real return value untested */
420 if (!buf)
422 if (size <= dir_len) size = dir_len + 1;
423 if (!(buf = MSVCRT_malloc( size ))) return NULL;
425 else if (dir_len >= size)
427 *MSVCRT__errno() = MSVCRT_ERANGE;
428 return NULL; /* buf too small */
430 strcpy(buf,dir);
431 return buf;
434 /*********************************************************************
435 * _wgetcwd (MSVCRT.@)
437 * Unicode version of _getcwd.
439 MSVCRT_wchar_t* CDECL _wgetcwd(MSVCRT_wchar_t * buf, int size)
441 MSVCRT_wchar_t dir[MAX_PATH];
442 int dir_len = GetCurrentDirectoryW(MAX_PATH,dir);
444 if (dir_len < 1)
445 return NULL; /* FIXME: Real return value untested */
447 if (!buf)
449 if (size <= dir_len) size = dir_len + 1;
450 if (!(buf = MSVCRT_malloc( size * sizeof(WCHAR) ))) return NULL;
452 if (dir_len >= size)
454 *MSVCRT__errno() = MSVCRT_ERANGE;
455 return NULL; /* buf too small */
457 strcpyW(buf,dir);
458 return buf;
461 /*********************************************************************
462 * _getdrive (MSVCRT.@)
464 * Get the current drive number.
466 * PARAMS
467 * None.
469 * RETURNS
470 * Success: The drive letter number from 1 to 26 ("A:" to "Z:").
471 * Failure: 0.
473 int CDECL _getdrive(void)
475 WCHAR buffer[MAX_PATH];
476 if (GetCurrentDirectoryW( MAX_PATH, buffer ) &&
477 buffer[0] >= 'A' && buffer[0] <= 'z' && buffer[1] == ':')
478 return toupperW(buffer[0]) - 'A' + 1;
479 return 0;
482 /*********************************************************************
483 * _getdcwd (MSVCRT.@)
485 * Get the current working directory on a given disk.
487 * PARAMS
488 * drive [I] Drive letter to get the current working directory from.
489 * buf [O] Destination for the current working directory.
490 * size [I] Length of drive in characters.
492 * RETURNS
493 * Success: If drive is NULL, returns an allocated string containing the path.
494 * Otherwise populates drive with the path and returns it.
495 * Failure: NULL. errno indicates the error.
497 char* CDECL _getdcwd(int drive, char * buf, int size)
499 static char* dummy;
501 TRACE(":drive %d(%c), size %d\n",drive, drive + 'A' - 1, size);
503 if (!drive || drive == _getdrive())
504 return _getcwd(buf,size); /* current */
505 else
507 char dir[MAX_PATH];
508 char drivespec[4] = {'A', ':', 0};
509 int dir_len;
511 drivespec[0] += drive - 1;
512 if (GetDriveTypeA(drivespec) < DRIVE_REMOVABLE)
514 *MSVCRT__errno() = MSVCRT_EACCES;
515 return NULL;
518 dir_len = GetFullPathNameA(drivespec,MAX_PATH,dir,&dummy);
519 if (dir_len >= size || dir_len < 1)
521 *MSVCRT__errno() = MSVCRT_ERANGE;
522 return NULL; /* buf too small */
525 TRACE(":returning '%s'\n", dir);
526 if (!buf)
527 return _strdup(dir); /* allocate */
529 strcpy(buf,dir);
531 return buf;
534 /*********************************************************************
535 * _wgetdcwd (MSVCRT.@)
537 * Unicode version of _wgetdcwd.
539 MSVCRT_wchar_t* CDECL _wgetdcwd(int drive, MSVCRT_wchar_t * buf, int size)
541 static MSVCRT_wchar_t* dummy;
543 TRACE(":drive %d(%c), size %d\n",drive, drive + 'A' - 1, size);
545 if (!drive || drive == _getdrive())
546 return _wgetcwd(buf,size); /* current */
547 else
549 MSVCRT_wchar_t dir[MAX_PATH];
550 MSVCRT_wchar_t drivespec[4] = {'A', ':', '\\', 0};
551 int dir_len;
553 drivespec[0] += drive - 1;
554 if (GetDriveTypeW(drivespec) < DRIVE_REMOVABLE)
556 *MSVCRT__errno() = MSVCRT_EACCES;
557 return NULL;
560 dir_len = GetFullPathNameW(drivespec,MAX_PATH,dir,&dummy);
561 if (dir_len >= size || dir_len < 1)
563 *MSVCRT__errno() = MSVCRT_ERANGE;
564 return NULL; /* buf too small */
567 TRACE(":returning %s\n", debugstr_w(dir));
568 if (!buf)
569 return _wcsdup(dir); /* allocate */
570 strcpyW(buf,dir);
572 return buf;
575 /*********************************************************************
576 * _getdiskfree (MSVCRT.@)
578 * Get information about the free space on a drive.
580 * PARAMS
581 * disk [I] Drive number to get information about (1 = 'A', 2 = 'B', ...)
582 * info [O] Destination for the resulting information.
584 * RETURNS
585 * Success: 0. info is updated with the free space information.
586 * Failure: An error code from GetLastError().
588 * NOTES
589 * See GetLastError().
591 unsigned int CDECL MSVCRT__getdiskfree(unsigned int disk, struct MSVCRT__diskfree_t * d)
593 WCHAR drivespec[4] = {'@', ':', '\\', 0};
594 DWORD ret[4];
595 unsigned int err;
597 if (disk > 26)
598 return ERROR_INVALID_PARAMETER; /* MSVCRT doesn't set errno here */
600 drivespec[0] += disk; /* make a drive letter */
602 if (GetDiskFreeSpaceW(disk==0?NULL:drivespec,ret,ret+1,ret+2,ret+3))
604 d->sectors_per_cluster = ret[0];
605 d->bytes_per_sector = ret[1];
606 d->avail_clusters = ret[2];
607 d->total_clusters = ret[3];
608 return 0;
610 err = GetLastError();
611 msvcrt_set_errno(err);
612 return err;
615 /*********************************************************************
616 * _mkdir (MSVCRT.@)
618 * Create a directory.
620 * PARAMS
621 * newdir [I] Name of directory to create.
623 * RETURNS
624 * Success: 0. The directory indicated by newdir is created.
625 * Failure: -1. errno indicates the error.
627 * NOTES
628 * See CreateDirectoryA.
630 int CDECL MSVCRT__mkdir(const char * newdir)
632 if (CreateDirectoryA(newdir,NULL))
633 return 0;
634 msvcrt_set_errno(GetLastError());
635 return -1;
638 /*********************************************************************
639 * _wmkdir (MSVCRT.@)
641 * Unicode version of _mkdir.
643 int CDECL _wmkdir(const MSVCRT_wchar_t* newdir)
645 if (CreateDirectoryW(newdir,NULL))
646 return 0;
647 msvcrt_set_errno(GetLastError());
648 return -1;
651 /*********************************************************************
652 * _rmdir (MSVCRT.@)
654 * Delete a directory.
656 * PARAMS
657 * dir [I] Name of directory to delete.
659 * RETURNS
660 * Success: 0. The directory indicated by newdir is deleted.
661 * Failure: -1. errno indicates the error.
663 * NOTES
664 * See RemoveDirectoryA.
666 int CDECL MSVCRT__rmdir(const char * dir)
668 if (RemoveDirectoryA(dir))
669 return 0;
670 msvcrt_set_errno(GetLastError());
671 return -1;
674 /*********************************************************************
675 * _wrmdir (MSVCRT.@)
677 * Unicode version of _rmdir.
679 int CDECL _wrmdir(const MSVCRT_wchar_t * dir)
681 if (RemoveDirectoryW(dir))
682 return 0;
683 msvcrt_set_errno(GetLastError());
684 return -1;
687 /*********************************************************************
688 * _wsplitpath (MSVCRT.@)
690 * Unicode version of _splitpath.
692 void CDECL _wsplitpath(const MSVCRT_wchar_t *inpath, MSVCRT_wchar_t *drv, MSVCRT_wchar_t *dir,
693 MSVCRT_wchar_t *fname, MSVCRT_wchar_t *ext )
695 const MSVCRT_wchar_t *p, *end;
697 if (inpath[0] && inpath[1] == ':')
699 if (drv)
701 drv[0] = inpath[0];
702 drv[1] = inpath[1];
703 drv[2] = 0;
705 inpath += 2;
707 else if (drv) drv[0] = 0;
709 /* look for end of directory part */
710 end = NULL;
711 for (p = inpath; *p; p++) if (*p == '/' || *p == '\\') end = p + 1;
713 if (end) /* got a directory */
715 if (dir)
717 memcpy( dir, inpath, (end - inpath) * sizeof(MSVCRT_wchar_t) );
718 dir[end - inpath] = 0;
720 inpath = end;
722 else if (dir) dir[0] = 0;
724 /* look for extension: what's after the last dot */
725 end = NULL;
726 for (p = inpath; *p; p++) if (*p == '.') end = p;
728 if (!end) end = p; /* there's no extension */
730 if (fname)
732 memcpy( fname, inpath, (end - inpath) * sizeof(MSVCRT_wchar_t) );
733 fname[end - inpath] = 0;
735 if (ext) strcpyW( ext, end );
738 /*********************************************************************
739 * _wfullpath (MSVCRT.@)
741 * Unicode version of _fullpath.
743 MSVCRT_wchar_t * CDECL _wfullpath(MSVCRT_wchar_t * absPath, const MSVCRT_wchar_t* relPath, MSVCRT_size_t size)
745 DWORD rc;
746 WCHAR* buffer;
747 WCHAR* lastpart;
748 BOOL alloced = FALSE;
750 if (!relPath || !*relPath)
751 return _wgetcwd(absPath, size);
753 if (absPath == NULL)
755 buffer = MSVCRT_malloc(MAX_PATH * sizeof(WCHAR));
756 size = MAX_PATH;
757 alloced = TRUE;
759 else
760 buffer = absPath;
762 if (size < 4)
764 *MSVCRT__errno() = MSVCRT_ERANGE;
765 return NULL;
768 TRACE(":resolving relative path %s\n",debugstr_w(relPath));
770 rc = GetFullPathNameW(relPath,size,buffer,&lastpart);
772 if (rc > 0 && rc <= size )
773 return buffer;
774 else
776 if (alloced)
777 MSVCRT_free(buffer);
778 return NULL;
782 /*********************************************************************
783 * _fullpath (MSVCRT.@)
785 * Create an absolute path from a relative path.
787 * PARAMS
788 * absPath [O] Destination for absolute path
789 * relPath [I] Relative path to convert to absolute
790 * size [I] Length of absPath in characters.
792 * RETURNS
793 * Success: If absPath is NULL, returns an allocated string containing the path.
794 * Otherwise populates absPath with the path and returns it.
795 * Failure: NULL. errno indicates the error.
797 char * CDECL _fullpath(char * absPath, const char* relPath, unsigned int size)
799 DWORD rc;
800 char* lastpart;
801 char* buffer;
802 BOOL alloced = FALSE;
804 if (!relPath || !*relPath)
805 return _getcwd(absPath, size);
807 if (absPath == NULL)
809 buffer = MSVCRT_malloc(MAX_PATH);
810 size = MAX_PATH;
811 alloced = TRUE;
813 else
814 buffer = absPath;
816 if (size < 4)
818 *MSVCRT__errno() = MSVCRT_ERANGE;
819 return NULL;
822 TRACE(":resolving relative path '%s'\n",relPath);
824 rc = GetFullPathNameA(relPath,size,buffer,&lastpart);
826 if (rc > 0 && rc <= size)
827 return buffer;
828 else
830 if (alloced)
831 MSVCRT_free(buffer);
832 return NULL;
836 /*********************************************************************
837 * _makepath (MSVCRT.@)
839 * Create a pathname.
841 * PARAMS
842 * path [O] Destination for created pathname
843 * drive [I] Drive letter (e.g. "A:")
844 * directory [I] Directory
845 * filename [I] Name of the file, excluding extension
846 * extension [I] File extension (e.g. ".TXT")
848 * RETURNS
849 * Nothing. If path is not large enough to hold the resulting pathname,
850 * random process memory will be overwritten.
852 VOID CDECL _makepath(char * path, const char * drive,
853 const char *directory, const char * filename,
854 const char * extension)
856 char *p = path;
858 TRACE("(%s %s %s %s)\n", debugstr_a(drive), debugstr_a(directory),
859 debugstr_a(filename), debugstr_a(extension) );
861 if ( !path )
862 return;
864 if (drive && drive[0])
866 *p++ = drive[0];
867 *p++ = ':';
869 if (directory && directory[0])
871 unsigned int len = strlen(directory);
872 memmove(p, directory, len);
873 p += len;
874 if (p[-1] != '/' && p[-1] != '\\')
875 *p++ = '\\';
877 if (filename && filename[0])
879 unsigned int len = strlen(filename);
880 memmove(p, filename, len);
881 p += len;
883 if (extension && extension[0])
885 if (extension[0] != '.')
886 *p++ = '.';
887 strcpy(p, extension);
889 else
890 *p = '\0';
891 TRACE("returning %s\n",path);
894 /*********************************************************************
895 * _wmakepath (MSVCRT.@)
897 * Unicode version of _wmakepath.
899 VOID CDECL _wmakepath(MSVCRT_wchar_t *path, const MSVCRT_wchar_t *drive, const MSVCRT_wchar_t *directory,
900 const MSVCRT_wchar_t *filename, const MSVCRT_wchar_t *extension)
902 MSVCRT_wchar_t *p = path;
904 TRACE("%s %s %s %s\n", debugstr_w(drive), debugstr_w(directory),
905 debugstr_w(filename), debugstr_w(extension));
907 if ( !path )
908 return;
910 if (drive && drive[0])
912 *p++ = drive[0];
913 *p++ = ':';
915 if (directory && directory[0])
917 unsigned int len = strlenW(directory);
918 memmove(p, directory, len * sizeof(MSVCRT_wchar_t));
919 p += len;
920 if (p[-1] != '/' && p[-1] != '\\')
921 *p++ = '\\';
923 if (filename && filename[0])
925 unsigned int len = strlenW(filename);
926 memmove(p, filename, len * sizeof(MSVCRT_wchar_t));
927 p += len;
929 if (extension && extension[0])
931 if (extension[0] != '.')
932 *p++ = '.';
933 strcpyW(p, extension);
935 else
936 *p = '\0';
938 TRACE("returning %s\n", debugstr_w(path));
941 /*********************************************************************
942 * _searchenv (MSVCRT.@)
944 * Search for a file in a list of paths from an environment variable.
946 * PARAMS
947 * file [I] Name of the file to search for.
948 * env [I] Name of the environment variable containing a list of paths.
949 * buf [O] Destination for the found file path.
951 * RETURNS
952 * Nothing. If the file is not found, buf will contain an empty string
953 * and errno is set.
955 void CDECL _searchenv(const char* file, const char* env, char *buf)
957 char*envVal, *penv;
958 char curPath[MAX_PATH];
960 *buf = '\0';
962 /* Try CWD first */
963 if (GetFileAttributesA( file ) != INVALID_FILE_ATTRIBUTES)
965 GetFullPathNameA( file, MAX_PATH, buf, NULL );
966 /* Sigh. This error is *always* set, regardless of success */
967 msvcrt_set_errno(ERROR_FILE_NOT_FOUND);
968 return;
971 /* Search given environment variable */
972 envVal = MSVCRT_getenv(env);
973 if (!envVal)
975 msvcrt_set_errno(ERROR_FILE_NOT_FOUND);
976 return;
979 penv = envVal;
980 TRACE(":searching for %s in paths %s\n", file, envVal);
984 char *end = penv;
986 while(*end && *end != ';') end++; /* Find end of next path */
987 if (penv == end || !*penv)
989 msvcrt_set_errno(ERROR_FILE_NOT_FOUND);
990 return;
992 memcpy(curPath, penv, end - penv);
993 if (curPath[end - penv] != '/' || curPath[end - penv] != '\\')
995 curPath[end - penv] = '\\';
996 curPath[end - penv + 1] = '\0';
998 else
999 curPath[end - penv] = '\0';
1001 strcat(curPath, file);
1002 TRACE("Checking for file %s\n", curPath);
1003 if (GetFileAttributesA( curPath ) != INVALID_FILE_ATTRIBUTES)
1005 strcpy(buf, curPath);
1006 msvcrt_set_errno(ERROR_FILE_NOT_FOUND);
1007 return; /* Found */
1009 penv = *end ? end + 1 : end;
1010 } while(1);
1013 /*********************************************************************
1014 * _wsearchenv (MSVCRT.@)
1016 * Unicode version of _searchenv
1018 void CDECL _wsearchenv(const MSVCRT_wchar_t* file, const MSVCRT_wchar_t* env, MSVCRT_wchar_t *buf)
1020 MSVCRT_wchar_t *envVal, *penv;
1021 MSVCRT_wchar_t curPath[MAX_PATH];
1023 *buf = '\0';
1025 /* Try CWD first */
1026 if (GetFileAttributesW( file ) != INVALID_FILE_ATTRIBUTES)
1028 GetFullPathNameW( file, MAX_PATH, buf, NULL );
1029 /* Sigh. This error is *always* set, regardless of success */
1030 msvcrt_set_errno(ERROR_FILE_NOT_FOUND);
1031 return;
1034 /* Search given environment variable */
1035 envVal = _wgetenv(env);
1036 if (!envVal)
1038 msvcrt_set_errno(ERROR_FILE_NOT_FOUND);
1039 return;
1042 penv = envVal;
1043 TRACE(":searching for %s in paths %s\n", debugstr_w(file), debugstr_w(envVal));
1047 MSVCRT_wchar_t *end = penv;
1049 while(*end && *end != ';') end++; /* Find end of next path */
1050 if (penv == end || !*penv)
1052 msvcrt_set_errno(ERROR_FILE_NOT_FOUND);
1053 return;
1055 memcpy(curPath, penv, (end - penv) * sizeof(MSVCRT_wchar_t));
1056 if (curPath[end - penv] != '/' || curPath[end - penv] != '\\')
1058 curPath[end - penv] = '\\';
1059 curPath[end - penv + 1] = '\0';
1061 else
1062 curPath[end - penv] = '\0';
1064 strcatW(curPath, file);
1065 TRACE("Checking for file %s\n", debugstr_w(curPath));
1066 if (GetFileAttributesW( curPath ) != INVALID_FILE_ATTRIBUTES)
1068 strcpyW(buf, curPath);
1069 msvcrt_set_errno(ERROR_FILE_NOT_FOUND);
1070 return; /* Found */
1072 penv = *end ? end + 1 : end;
1073 } while(1);