Another update from ingydotnet^djgoku

This commit is contained in:
Ingy döt Net 2015-11-18 06:14:39 +00:00
parent 91df62d461
commit 948b86eafa
7604 changed files with 108452 additions and 22726 deletions

View file

@ -10,6 +10,7 @@ procedure Directory_List is
function SName return String is (Simple_Name(Found));
begin
-- search directory and store it in Result, a vector of strings
Start_Search(Search, Directory => ".", Pattern =>"");
while More_Entries(Search) loop
Get_Next_Entry(Search, Found);
@ -20,9 +21,11 @@ begin
Result.Append(Name);
end if; -- ingnore filenames beginning with "."
end;
end loop; -- now Result holds the entire directory in arbitrary order
end loop; -- Result holds the entire directory in arbitrary order
Sort(Result); -- nor Result holds the directory in proper order
Sort(Result); -- Result holds the directory in proper order
-- print Result
for I in Result.First_Index .. Result.Last_Index loop
Put_Line(Result.Element(I));
end loop;