blob: b650eb0a90007bb82e011d7d934189c2c4d74ee3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
/*
* (C) Copyright 1990, 1991 Tom Dinger
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
*/
/*
* A "DOS-aware" chdir() function, that will change current drive as well.
*
* chdir( "B:" ) -- changes to the default directory, on drive B:
* chdir( "C:\FOO" ) changes to the specified directory, on drive C:
* chdir( "\BAR" ) changes to the specified directory on the current
* drive.
*/
#include <stdlib.h>
#include <ctype.h>
#include <direct.h>
#include <dos.h>
#include <errno.h>
#include "config.h"
#ifdef chdir
#undef chdir
#endif
/* We should have the line:
*
* #define chdir perl_chdir
*
* in some header for perl (I put it in config.h) so that all
* references to chdir() become references to this function.
*/
/*------------------------------------------------------------------*/
#if defined(BUGGY_MSC5) /* only needed for MSC 5.1 */
int _chdrive( int drivenum )
{
unsigned int ndrives;
unsigned int tmpdrive;
_dos_setdrive( drivenum, &ndrives );
/* check for illegal drive letter */
_dos_getdrive( &tmpdrive );
return (tmpdrive != drivenum) ? -1 : 0 ;
}
#endif
/*-----------------------------------------------------------------*/
int perl_chdir( char * path )
{
int drive_letter;
unsigned int drivenum;
if ( path && *path && (path[1] == ':') )
{
/* The path starts with a drive letter */
/* Change current drive */
drive_letter = *path;
if ( isalpha(drive_letter) )
{
/* Drive letter legal */
if ( islower(drive_letter) )
drive_letter = toupper(drive_letter);
drivenum = drive_letter - 'A' + 1;
/* Change drive */
if ( _chdrive( drivenum ) == -1 )
{
/* Drive change failed -- must be illegal drive letter */
errno = ENODEV;
return -1;
}
/* Now see if that's all we do */
if ( ! path[2] )
return 0; /* no path after drive -- all done */
}
/* else drive letter illegal -- fall into "normal" chdir */
}
/* Here with some path as well */
return chdir( path );
/* end perl_chdir() */
}
|