我目前正在处理一个大型脚本(对我来说),我需要删除文件夹中的一些文件。为了确定我需要删除哪些文件,我正在阅读一个包含我需要的所有信息的文本文件。我正在使用 TStringList 类和函数 Pos() 来获取这些信息。
我的问题来自函数 Pos(),它返回多个值,StringList (文本文件)的每个字符串一个值。
所以这是我脚本的专用部分:
Procedure Delete;
Var
SL : TStringList;
i, A, B : Integer; //i is a Counter, A and B are not mandatory but are useful for DEBUG
PCBFile : String;
Begin
PCBFile := //Full Path
SL := TStringList.Create;
SL.LoadFromFile(PCBFile);
For i := 1 To (SL.Count - 1) Do //I don't need to check the 1st line of the text file.
A := Pos('gtl', SL.Strings[i]); //Here is when the problem occurs.
B := Pos('gbl', SL.Strings[i]); //Doesn't get to here because i = SL.Count before looping
If (A = 0) And (B = 0) Then //The goal
ChangeFileExt(PCBFile, '.TX');
PCBFile := PCBFile + FloatToStr(i-2); //The files I want to delete can have several extensions (tx1, tx2... txN)
DeleteFile(PCBFile);
End;
End;
SL.Free;
End;
如果我改变这一行:
A := Pos('gtl', SL.Strings[i]);
对此:
ShowInfo (Pos('gtl', SL.Strings[i])); //Basic function from Altium Designer, same as Writeln()
它将显示一个弹出窗口,其中包含文本文件每一行的函数 Pos() 的结果。我假设 SL.Strings[i] 对 i 进行内部自动增量,但我想用我的 For Do 循环来管理它。
我这两天在网上搜索,但没有找到任何关于做什么的线索,也许问题来自 Altium Designer,它一开始并不是真正的编程软件。
我也尝试了 SL.IndexOf() 函数,但它只适用于严格的字符串,这不是我的情况。
感谢您的时间和帮助。
最好的问候,乔丹