私はグーグルを検索しようとしましたが、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でどのように行われますか?