-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUNLINK.PAS
61 lines (56 loc) · 1.29 KB
/
UNLINK.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
53
54
55
56
57
58
59
60
61
{ @author: Sylvain Maltais ([email protected])
@created: 2024
@website(https://www.gladir.com/linux-0)
@abstract(Target: Turbo Pascal 7, Free Pascal 3.2)
}
Program UNLINK;
Uses DOS;
Var
FileErase:File;
Info:SearchRec;
I:Integer;
CurrDir:String;
Function Path2Dir(Const Path:String):String;
Var
D:DirStr;
N:NameStr;
E:ExtStr;
Begin
Path2Dir:='';
If Path=''Then Exit;
FSplit(Path,D,N,E);
If E=''Then Begin
If D[Length(D)]<>'\'Then D:=D+'\';
D:=D+E;
End;
If D=''Then Path2Dir:='' Else
If D[Length(D)]<>'\'Then D:=D+'\';
Path2Dir:=D;
End;
BEGIN
If(ParamStr(1)='/?')or(ParamStr(1)='--help')or(ParamStr(1)='-h')or
(ParamStr(1)='/h')or(ParamStr(1)='/H')Then Begin
WriteLn('UNLINK : Cette commande permet de supprimer un lien symbolique.');
WriteLn;
WriteLn('Syntaxe : UNLINK nomdufichier');
WriteLn;
WriteLn(' nomdufichier Nom des fichiers … d‚lier');
WriteLn;
End
Else
If ParamCount>0 Then Begin
For I:=1 to ParamCount do Begin
CurrDir:=Path2Dir(FExpand(ParamStr(I)));
FindFirst(ParamStr(I),AnyFile,Info);
While DOSError=0 do Begin
{$I-}Assign(FileErase,CurrDir+Info.Name);
Erase(FileErase);{$I+}
If IOResult<>0 Then Begin
WriteLn('Impossible de supprimer le fichier : ',Info.Name);
Halt(1);
End;
FindNext(Info);
End;
End;
End;
END.