1

我试过搜索谷歌,但几乎没有任何关于通过 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 上完成的?

4

1 回答 1

1

不幸的是,我不完全理解你的代码。但是,您通常会NSFileManager用来询问文件系统。

例如,要列出特定路径中的所有文件(即文件和文件夹),您可以执行以下操作:

- (NSArray *) listFilesAtPath:(NSString*)path {
    NSFileManager *fileManager = [NSFileManager defaultManager];

    BOOL isDir;
    if(([fileManager fileExistsAtPath:path isDirectory:&isDir] == NO) && isDir) {
        // There isn't a folder specified at the path.
        return nil;
    }

    NSError *error = nil;
    NSURL *url = [NSURL fileURLWithPath:path];
    NSArray *folderItems = [fileManager contentsOfDirectoryAtURL:url
                             includingPropertiesForKeys:[NSArray arrayWithObjects:NSURLNameKey, NSURLIsDirectoryKey, nil]
                                                options:NSDirectoryEnumerationSkipsHiddenFiles
                                                  error:&error];

    if (error) {
        // Handle error here
    }
    return folderItems;
}

以下是如何使用此方法的示例:

NSArray *folderItems = [self listFilesAtPath:@"/Users/1Rabbit/Desktop"];
for (NSURL *item in folderItems) {
    NSNumber *isHidden = nil;

    [item getResourceValue:&isHidden forKey:NSURLIsDirectoryKey error:nil];
    if ([isHidden boolValue]) {
        NSLog(@"%@ dir", item.path);
    }
    else {
        NSLog(@"%@", item.path);
    }
}
于 2012-10-14T00:51:44.133 回答