Inherits from NSObject
Declared in DBFileInfo.h

Overview

The file info class contains basic information about a file or folder.

Tasks

  •   path

    The path of the file or folder.

    property
  •   isFolder

    Whether the item at path is a folder or a file.

    property
  •   modifiedTime

    The last time the file or folder was modified.

    property
  •   size

    The file’s size. This property is always 0 for folders.

    property

Properties

isFolder

Whether the item at path is a folder or a file.

@property (nonatomic, readonly) BOOL isFolder

Declared In

DBFileInfo.h

modifiedTime

The last time the file or folder was modified.

@property (nonatomic, readonly) NSDate *modifiedTime

Declared In

DBFileInfo.h

path

The path of the file or folder.

@property (nonatomic, readonly) DBPath *path

Declared In

DBFileInfo.h

size

The file’s size. This property is always 0 for folders.

@property (nonatomic, readonly) long long size

Declared In

DBFileInfo.h