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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include "wine/port.h"
29 #include "wine/unicode.h"
31 #include "msvcrt/errno.h"
33 #include "wine/unicode.h"
34 #include "msvcrt/direct.h"
35 #include "msvcrt/dos.h"
36 #include "msvcrt/io.h"
37 #include "msvcrt/stdlib.h"
38 #include "msvcrt/string.h"
40 #include "wine/debug.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt
);
44 /* INTERNAL: Translate finddata_t to PWIN32_FIND_DATAA */
45 static void msvcrt_fttofd(LPWIN32_FIND_DATAA fd
, struct _finddata_t
* ft
)
49 if (fd
->dwFileAttributes
== FILE_ATTRIBUTE_NORMAL
)
52 ft
->attrib
= fd
->dwFileAttributes
;
54 RtlTimeToSecondsSince1970( (LARGE_INTEGER
*)&fd
->ftCreationTime
, &dw
);
56 RtlTimeToSecondsSince1970( (LARGE_INTEGER
*)&fd
->ftLastAccessTime
, &dw
);
58 RtlTimeToSecondsSince1970( (LARGE_INTEGER
*)&fd
->ftLastWriteTime
, &dw
);
60 ft
->size
= fd
->nFileSizeLow
;
61 strcpy(ft
->name
, fd
->cFileName
);
64 /* INTERNAL: Translate wfinddata_t to PWIN32_FIND_DATAA */
65 static void msvcrt_wfttofd(LPWIN32_FIND_DATAW fd
, struct _wfinddata_t
* ft
)
69 if (fd
->dwFileAttributes
== FILE_ATTRIBUTE_NORMAL
)
72 ft
->attrib
= fd
->dwFileAttributes
;
74 RtlTimeToSecondsSince1970( (LARGE_INTEGER
*)&fd
->ftCreationTime
, &dw
);
76 RtlTimeToSecondsSince1970( (LARGE_INTEGER
*)&fd
->ftLastAccessTime
, &dw
);
78 RtlTimeToSecondsSince1970( (LARGE_INTEGER
*)&fd
->ftLastWriteTime
, &dw
);
80 ft
->size
= fd
->nFileSizeLow
;
81 strcpyW(ft
->name
, fd
->cFileName
);
84 /*********************************************************************
87 int _chdir(const char * newdir
)
89 if (!SetCurrentDirectoryA(newdir
))
91 MSVCRT__set_errno(newdir
?GetLastError():0);
97 /*********************************************************************
100 int _wchdir(const MSVCRT_wchar_t
* newdir
)
102 if (!SetCurrentDirectoryW(newdir
))
104 MSVCRT__set_errno(newdir
?GetLastError():0);
110 /*********************************************************************
111 * _chdrive (MSVCRT.@)
113 int _chdrive(int newdrive
)
115 char buffer
[3] = "A:";
116 buffer
[0] += newdrive
- 1;
117 if (!SetCurrentDirectoryA( buffer
))
119 MSVCRT__set_errno(GetLastError());
121 *MSVCRT__errno() = MSVCRT_EACCES
;
127 /*********************************************************************
128 * _findclose (MSVCRT.@)
130 int _findclose(long hand
)
132 TRACE(":handle %ld\n",hand
);
133 if (!FindClose((HANDLE
)hand
))
135 MSVCRT__set_errno(GetLastError());
141 /*********************************************************************
142 * _findfirst (MSVCRT.@)
144 long _findfirst(const char * fspec
, struct _finddata_t
* ft
)
146 WIN32_FIND_DATAA find_data
;
149 hfind
= FindFirstFileA(fspec
, &find_data
);
150 if (hfind
== INVALID_HANDLE_VALUE
)
152 MSVCRT__set_errno(GetLastError());
155 msvcrt_fttofd(&find_data
,ft
);
156 TRACE(":got handle %p\n",hfind
);
160 /*********************************************************************
161 * _wfindfirst (MSVCRT.@)
163 long _wfindfirst(const MSVCRT_wchar_t
* fspec
, struct _wfinddata_t
* ft
)
165 WIN32_FIND_DATAW find_data
;
168 hfind
= FindFirstFileW(fspec
, &find_data
);
169 if (hfind
== INVALID_HANDLE_VALUE
)
171 MSVCRT__set_errno(GetLastError());
174 msvcrt_wfttofd(&find_data
,ft
);
175 TRACE(":got handle %p\n",hfind
);
179 /*********************************************************************
180 * _findnext (MSVCRT.@)
182 int _findnext(long hand
, struct _finddata_t
* ft
)
184 WIN32_FIND_DATAA find_data
;
186 if (!FindNextFileA((HANDLE
)hand
, &find_data
))
188 *MSVCRT__errno() = MSVCRT_ENOENT
;
192 msvcrt_fttofd(&find_data
,ft
);
196 /*********************************************************************
197 * _wfindnext (MSVCRT.@)
199 int _wfindnext(long hand
, struct _wfinddata_t
* ft
)
201 WIN32_FIND_DATAW find_data
;
203 if (!FindNextFileW((HANDLE
)hand
, &find_data
))
205 *MSVCRT__errno() = MSVCRT_ENOENT
;
209 msvcrt_wfttofd(&find_data
,ft
);
213 /*********************************************************************
216 char* _getcwd(char * buf
, int size
)
219 int dir_len
= GetCurrentDirectoryA(MAX_PATH
,dir
);
222 return NULL
; /* FIXME: Real return value untested */
228 return msvcrt_strndup(dir
,size
);
232 *MSVCRT__errno() = MSVCRT_ERANGE
;
233 return NULL
; /* buf too small */
239 /*********************************************************************
240 * _wgetcwd (MSVCRT.@)
242 MSVCRT_wchar_t
* _wgetcwd(MSVCRT_wchar_t
* buf
, int size
)
244 MSVCRT_wchar_t dir
[MAX_PATH
];
245 int dir_len
= GetCurrentDirectoryW(MAX_PATH
,dir
);
248 return NULL
; /* FIXME: Real return value untested */
254 return msvcrt_wstrndup(dir
,size
);
258 *MSVCRT__errno() = MSVCRT_ERANGE
;
259 return NULL
; /* buf too small */
265 /*********************************************************************
266 * _getdrive (MSVCRT.@)
270 char buffer
[MAX_PATH
];
271 if (!GetCurrentDirectoryA( sizeof(buffer
), buffer
)) return 0;
272 if (buffer
[1] != ':') return 0;
273 return toupper(buffer
[0]) - 'A' + 1;
276 /*********************************************************************
277 * _getdcwd (MSVCRT.@)
279 char* _getdcwd(int drive
, char * buf
, int size
)
283 TRACE(":drive %d(%c), size %d\n",drive
, drive
+ 'A' - 1, size
);
285 if (!drive
|| drive
== _getdrive())
286 return _getcwd(buf
,size
); /* current */
290 char drivespec
[4] = {'A', ':', '\\', 0};
293 drivespec
[0] += drive
- 1;
294 if (GetDriveTypeA(drivespec
) < DRIVE_REMOVABLE
)
296 *MSVCRT__errno() = MSVCRT_EACCES
;
300 dir_len
= GetFullPathNameA(drivespec
,MAX_PATH
,dir
,&dummy
);
301 if (dir_len
>= size
|| dir_len
< 1)
303 *MSVCRT__errno() = MSVCRT_ERANGE
;
304 return NULL
; /* buf too small */
307 TRACE(":returning '%s'\n", dir
);
309 return _strdup(dir
); /* allocate */
316 /*********************************************************************
317 * _wgetdcwd (MSVCRT.@)
319 MSVCRT_wchar_t
* _wgetdcwd(int drive
, MSVCRT_wchar_t
* buf
, int size
)
321 static MSVCRT_wchar_t
* dummy
;
323 TRACE(":drive %d(%c), size %d\n",drive
, drive
+ 'A' - 1, size
);
325 if (!drive
|| drive
== _getdrive())
326 return _wgetcwd(buf
,size
); /* current */
329 MSVCRT_wchar_t dir
[MAX_PATH
];
330 MSVCRT_wchar_t drivespec
[4] = {'A', ':', '\\', 0};
333 drivespec
[0] += drive
- 1;
334 if (GetDriveTypeW(drivespec
) < DRIVE_REMOVABLE
)
336 *MSVCRT__errno() = MSVCRT_EACCES
;
340 dir_len
= GetFullPathNameW(drivespec
,MAX_PATH
,dir
,&dummy
);
341 if (dir_len
>= size
|| dir_len
< 1)
343 *MSVCRT__errno() = MSVCRT_ERANGE
;
344 return NULL
; /* buf too small */
347 TRACE(":returning %s\n", debugstr_w(dir
));
349 return _wcsdup(dir
); /* allocate */
355 /*********************************************************************
356 * _getdiskfree (MSVCRT.@)
358 unsigned int _getdiskfree(unsigned int disk
, struct _diskfree_t
* d
)
360 char drivespec
[4] = {'@', ':', '\\', 0};
365 return ERROR_INVALID_PARAMETER
; /* MSVCRT doesn't set errno here */
367 drivespec
[0] += disk
; /* make a drive letter */
369 if (GetDiskFreeSpaceA(disk
==0?NULL
:drivespec
,ret
,ret
+1,ret
+2,ret
+3))
371 d
->sectors_per_cluster
= (unsigned)ret
[0];
372 d
->bytes_per_sector
= (unsigned)ret
[1];
373 d
->avail_clusters
= (unsigned)ret
[2];
374 d
->total_clusters
= (unsigned)ret
[3];
377 err
= GetLastError();
378 MSVCRT__set_errno(err
);
382 /*********************************************************************
385 int _mkdir(const char * newdir
)
387 if (CreateDirectoryA(newdir
,NULL
))
389 MSVCRT__set_errno(GetLastError());
393 /*********************************************************************
396 int _wmkdir(const MSVCRT_wchar_t
* newdir
)
398 if (CreateDirectoryW(newdir
,NULL
))
400 MSVCRT__set_errno(GetLastError());
404 /*********************************************************************
407 int _rmdir(const char * dir
)
409 if (RemoveDirectoryA(dir
))
411 MSVCRT__set_errno(GetLastError());
415 /*********************************************************************
418 int _wrmdir(const MSVCRT_wchar_t
* dir
)
420 if (RemoveDirectoryW(dir
))
422 MSVCRT__set_errno(GetLastError());
426 /*********************************************************************
427 * _wsplitpath (MSVCRT.@)
429 void _wsplitpath(const MSVCRT_wchar_t
*inpath
, MSVCRT_wchar_t
*drv
, MSVCRT_wchar_t
*dir
,
430 MSVCRT_wchar_t
*fname
, MSVCRT_wchar_t
*ext
)
432 /* Modified PD code from 'snippets' collection. */
433 MSVCRT_wchar_t ch
, *ptr
, *p
;
434 MSVCRT_wchar_t pathbuff
[MAX_PATH
],*path
=pathbuff
;
436 /* FIXME: Should be an strncpyW or something */
437 strcpyW(pathbuff
, inpath
);
438 TRACE(":splitting path %s\n",debugstr_w(path
));
440 /* convert slashes to backslashes for searching */
441 for (ptr
= (MSVCRT_wchar_t
*)path
; *ptr
; ++ptr
)
445 /* look for drive spec */
446 if ((ptr
= strchrW(path
, ':')) != 0)
451 strncpyW(drv
, path
, ptr
- path
);
459 /* find rightmost backslash or leftmost colon */
460 if ((ptr
= strrchrW(path
, '\\')) == NULL
)
461 ptr
= (strchrW(path
, ':'));
465 ptr
= (MSVCRT_wchar_t
*)path
; /* no path */
471 ++ptr
; /* skip the delimiter */
481 if ((p
= strrchrW(ptr
, '.')) == NULL
)
498 /* Fix pathological case - Win returns ':' as part of the
499 * directory when no drive letter is given.
501 if (drv
&& drv
[0] == ':')
508 strcatW(pathbuff
,dir
);
509 strcpyW(dir
, pathbuff
);
514 /* INTERNAL: Helper for _fullpath. Modified PD code from 'snippets'. */
515 static void msvcrt_fln_fix(char *path
)
517 int dir_flag
= 0, root_flag
= 0;
521 if (NULL
== (r
= strrchr(path
, ':')))
526 /* Ignore leading slashes */
536 p
= r
; /* Change "\\" to "\" */
537 while (NULL
!= (p
= strchr(p
, '\\')))
543 while ('.' == *r
) /* Scrunch leading ".\" */
547 /* Ignore leading ".." */
548 for (p
= (r
+= 2); *p
&& (*p
!= '\\'); ++p
)
553 for (p
= r
+ 1 ;*p
&& (*p
!= '\\'); ++p
)
556 strcpy(r
, p
+ ((*p
) ? 1 : 0));
559 while ('\\' == path
[strlen(path
)-1]) /* Strip last '\\' */
562 path
[strlen(path
)-1] = '\0';
567 /* Look for "\." in path */
569 while (NULL
!= (p
= strstr(s
, "\\.")))
573 /* Execute this section if ".." found */
575 while (q
> r
) /* Backup one level */
588 strcpy(q
+ ((*q
== '\\') ? 1 : 0),
589 p
+ 3 + ((*(p
+ 3)) ? 1 : 0));
596 /* Execute this section if "." found */
598 for ( ;*q
&& (*q
!= '\\'); ++q
)
604 if (root_flag
) /* Embedded ".." could have bubbled up to root */
606 for (p
= r
; *p
&& ('.' == *p
|| '\\' == *p
); ++p
)
616 /*********************************************************************
617 * _fullpath (MSVCRT.@)
619 char *_fullpath(char * absPath
, const char* relPath
, unsigned int size
)
621 char drive
[5],dir
[MAX_PATH
],file
[MAX_PATH
],ext
[MAX_PATH
];
627 if (!relPath
|| !*relPath
)
628 return _getcwd(absPath
, size
);
632 *MSVCRT__errno() = MSVCRT_ERANGE
;
636 TRACE(":resolving relative path '%s'\n",relPath
);
638 _splitpath(relPath
, drive
, dir
, file
, ext
);
640 /* Get Directory and drive into 'res' */
641 if (!dir
[0] || (dir
[0] != '/' && dir
[0] != '\\'))
643 /* Relative or no directory given */
644 _getdcwd(drive
[0] ? toupper(drive
[0]) - 'A' + 1 : 0, res
, MAX_PATH
);
649 res
[0] = drive
[0]; /* If given a drive, preserve the letter case */
663 if (len
>= MAX_PATH
|| len
>= (size_t)size
)
664 return NULL
; /* FIXME: errno? */
672 /*********************************************************************
673 * _makepath (MSVCRT.@)
675 VOID
_makepath(char * path
, const char * drive
,
676 const char *directory
, const char * filename
,
677 const char * extension
)
680 char tmpPath
[MAX_PATH
];
681 TRACE("got %s %s %s %s\n", debugstr_a(drive
), debugstr_a(directory
),
682 debugstr_a(filename
), debugstr_a(extension
) );
688 if (drive
&& drive
[0])
690 tmpPath
[0] = drive
[0];
694 if (directory
&& directory
[0])
696 strcat(tmpPath
, directory
);
697 ch
= tmpPath
[strlen(tmpPath
)-1];
698 if (ch
!= '/' && ch
!= '\\')
699 strcat(tmpPath
,"\\");
701 if (filename
&& filename
[0])
703 strcat(tmpPath
, filename
);
704 if (extension
&& extension
[0])
706 if ( extension
[0] != '.' )
708 strcat(tmpPath
,extension
);
712 strcpy( path
, tmpPath
);
714 TRACE("returning %s\n",path
);
717 /*********************************************************************
718 * _wmakepath (MSVCRT.@)
720 VOID
_wmakepath(MSVCRT_wchar_t
*path
, const MSVCRT_wchar_t
*drive
, const MSVCRT_wchar_t
*directory
,
721 const MSVCRT_wchar_t
*filename
, const MSVCRT_wchar_t
*extension
)
724 TRACE("%s %s %s %s\n", debugstr_w(drive
), debugstr_w(directory
),
725 debugstr_w(filename
), debugstr_w(extension
));
731 if (drive
&& drive
[0])
737 if (directory
&& directory
[0])
739 strcatW(path
, directory
);
740 ch
= path
[strlenW(path
) - 1];
741 if (ch
!= '/' && ch
!= '\\')
743 static const MSVCRT_wchar_t backslashW
[] = {'\\',0};
744 strcatW(path
, backslashW
);
747 if (filename
&& filename
[0])
749 strcatW(path
, filename
);
750 if (extension
&& extension
[0])
752 if ( extension
[0] != '.' )
754 static const MSVCRT_wchar_t dotW
[] = {'.',0};
757 strcatW(path
, extension
);
761 TRACE("returning %s\n", debugstr_w(path
));
764 /*********************************************************************
765 * _searchenv (MSVCRT.@)
767 void _searchenv(const char* file
, const char* env
, char *buf
)
770 char curPath
[MAX_PATH
];
775 if (GetFileAttributesA( file
) != 0xFFFFFFFF)
777 GetFullPathNameA( file
, MAX_PATH
, buf
, NULL
);
778 /* Sigh. This error is *always* set, regardless of success */
779 MSVCRT__set_errno(ERROR_FILE_NOT_FOUND
);
783 /* Search given environment variable */
784 envVal
= MSVCRT_getenv(env
);
787 MSVCRT__set_errno(ERROR_FILE_NOT_FOUND
);
792 TRACE(":searching for %s in paths %s\n", file
, envVal
);
798 while(*end
&& *end
!= ';') end
++; /* Find end of next path */
799 if (penv
== end
|| !*penv
)
801 MSVCRT__set_errno(ERROR_FILE_NOT_FOUND
);
804 strncpy(curPath
, penv
, end
- penv
);
805 if (curPath
[end
- penv
] != '/' || curPath
[end
- penv
] != '\\')
807 curPath
[end
- penv
] = '\\';
808 curPath
[end
- penv
+ 1] = '\0';
811 curPath
[end
- penv
] = '\0';
813 strcat(curPath
, file
);
814 TRACE("Checking for file %s\n", curPath
);
815 if (GetFileAttributesA( curPath
) != 0xFFFFFFFF)
817 strcpy(buf
, curPath
);
818 MSVCRT__set_errno(ERROR_FILE_NOT_FOUND
);
821 penv
= *end
? end
+ 1 : end
;