我试过搜索谷歌,但几乎没有任何关于通过 xcode 在 Mac 上搜索文件和文件夹的方法。
有可能吗?怎么做?任何代码示例等
我以前在delphi中编程,搜索路径的片段是这样的。
procedure SearchFolders(path:string);
var
sr : tsearchrec;
res: integer;
i:integer;
begin
path:= includetrailingpathdelimiter(path);
res:= findfirst(path+'*.*',faAnyfile,sr);
while res = 0 do begin
application.processmessages;
if (sr.name <> '.') and (sr.name <> '..') then
if DirectoryExists(path + sr.name) then
SearchFolders(path + sr.name)
else
FileProcess.Add(path + sr.name);
FileSize:=FileSize+sr.Size;
res := findnext(sr);
end;
findclose(sr);
end;
激活,它的这个 SearchFolders('C:\'); 它搜索路径并将其存储到字符串列表中。
它是如何在 xcode 中的 osx 上完成的?