forked from gladir/corail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCREATE.PAS
52 lines (49 loc) · 1.15 KB
/
CREATE.PAS
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
{ @author: Sylvain Maltais ([email protected])
@created: 2022
@website(https://www.gladir.com/corail)
@abstract(Target: Turbo Pascal, Free Pascal)
}
Program CREATE;
Var
OptionFlag:(None,LRL,REC,SIZE);
Err:Word;
Handle:File;
I:Integer;
LRLValue,RecValue,SizeValue,FileName:String;
BEGIN
If(ParamStr(1)='/?')or(ParamStr(1)='--help')or(ParamStr(1)='-h')Then Begin
WriteLn('CREATE : Cette commande permet de creer un fichier.');
WriteLn;
WriteLn('Syntaxe : CREATE nomdufichier');
End
Else
Begin
OptionFlag:=None;
FileName:='';
For I:=1 to ParamCount do Begin
If OptionFlag<>None Then Begin
Case OptionFlag of
LRL:LRLValue:=ParamStr(I);
REC:RECValue:=ParamStr(I);
SIZE:SIZEValue:=ParamStr(I);
End;
OptionFlag:=None;
End
Else
If ParamStr(I)='LRL='Then OptionFlag:=LRL Else
If ParamStr(I)='REC='Then OptionFlag:=REC Else
If ParamStr(I)='SIZE='Then OptionFlag:=SIZE
Else
Begin
FileName:=ParamStr(I);
OptionFlag:=None;
End;
End;
If FileName<>''Then Begin
Assign(Handle,FileName);
{$I-}Reset(Handle);{$I+}
If IOResult<>0 Then Rewrite(Handle);
Close(Handle);
End;
End;
END.