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
|
{ Program to test OS-specific features of the system unit }
{ routines to test: }
{ mkdir() }
{ chdir() }
{ This program shoulf not be executed in a root directory }
{ Creates the following directory, and sets it as the }
{ current directory. }
{ ../testdir }
{ %skiptarget=wince }
Program tdir;
{$I-}
procedure test(value, required: longint);
begin
if value <> required then
begin
writeln('Got ',value,' instead of ',required);
halt(1);
end;
end;
var
s: string;
Begin
Write('changing to parent directory...');
chdir('..');
test(IOResult, 0);
WriteLn('Passed!');
Write('making directory...');
mkdir('testdir');
test(IOResult, 0);
WriteLn('Passed!');
Write('going into the newly created directory...');
chdir('testdir');
test(IOResult, 0);
WriteLn('Passed!');
Write('making directory...');
mkdir('testdir2');
test(IOResult, 0);
WriteLn('Passed!');
Write('removing directory ...');
rmdir('testdir2');
test(IOResult, 0);
WriteLn('Passed!');
Write('going directory up ...');
chdir('..');
test(IOResult, 0);
WriteLn('Passed!');
Write('removing directory ...');
rmdir('testdir');
test(IOResult, 0);
WriteLn('Passed!');
WriteLn('getting current directory...');
getdir(0,s);
WriteLn(s);
end.
|