runModalForDirectory:file:types:
Displays the panel and begins a modal event loop that is terminated when the user clicks either OK or Cancel.
Declaration
- (NSInteger) runModalForDirectory:(NSString *) path file:(NSString *) name types:(NSArray *) fileTypes;Parameters
- path:
The directory whose files the panel displays. When
nil, the directory is the same directory used in the previous invocation of the panel; this is probably the best choice for most situations. - name:
Specifies a particular file in
absoluteDirectoryPaththat is selected when the Open panel is presented to the user. Whennil, no file is initially selected. - fileTypes:
An array of file extensions and/or HFS file types. Specifies the files the panel allows the user to select.
nilmakes all files inabsoluteDirectoryPathselectable by the user. An array of types passed in here will override one set using Allowedfiletypes.
Return Value
The button clicked to dismiss the dialog: NSOKButton for the OK button and NSCancelButton for the Cancel button.
Discussion
You can control whether directories and files appear in the browser with the canChooseDirectories and canChooseFiles methods.