搜索文件和文件夹的驱动器

时间:2012-10-13 17:22:32

标签: objective-c xcode macos osx-snow-leopard

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

1 个答案:

答案 0 :(得分: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);
    }
}