You can implement this using objective-c runtime.NSSavePanel
is using NSNavNewFolderController
class for New folder dialog creation.
//
// PBSavePanel.h
// PBSavePanel
//
// Created by Parag on 28/02/13.
// Copyright 2013 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface NSSavePanel (NewFolderButton)
-(void)setDefaultNewFolderName : (NSString *)name;// change default folder name
-(void)setIncludeNewFolderButton: (BOOL)value; // show/hide new folder button
@end
//
// PBSavePanel.m
// PBSavePanel
//
// Created by Parag on 28/02/13.
// Copyright 2013 __MyCompanyName__. All rights reserved.
//
#import "PBSavePanel.h"
#import <objc/runtime.h>
@implementation NSSavePanel (NewFolderButton)
static NSMutableString *mfolderName;
static BOOL shouldNotOverride;
-(void)setDefaultNewFolderName : (NSString *)name;
{
if (!shouldNotOverride) {
shouldNotOverride =YES;
[self overrideFunctions:NSClassFromString(@"NSNavNewFolderController") sourceFunction:@selector(_defaultNewFolderName) customClass:[self class] newFunction:@selector(_defaultNewFolderNameNew)];
}
if (mfolderName==nil) {
mfolderName = [[NSMutableString alloc] init];
}
[mfolderName setString:name];
}
-(void)setIncludeNewFolderButton: (BOOL)value;
{
[self _setIncludeNewFolderButton:value];
}
-(void) overrideFunctions:(Class)actualClass sourceFunction:(SEL)actualFunction customClass:(Class) customClass newFunction:(SEL)newFunction
{
NSAutoreleasePool *pool=[[NSAutoreleasePool alloc]init];
Method actualDefinitionInActualClass = class_getInstanceMethod(actualClass, actualFunction);
Method newDefinitionInCustomClass=class_getInstanceMethod(customClass, actualFunction);
const char* oldEncoding=method_getTypeEncoding(actualDefinitionInActualClass);
IMP oldImplementation=method_setImplementation(actualDefinitionInActualClass,method_getImplementation(newDefinitionInCustomClass));
class_addMethod(actualClass, newFunction, oldImplementation, oldEncoding);
class_addMethod(class_getSuperclass(actualClass), newFunction, oldImplementation, oldEncoding);
[pool drain];
}
-(NSString *)_defaultNewFolderName
{
return mfolderName;
}
-(void)dealloc
{
if (mfolderName) {
[mfolderName release];
}
[super dealloc];
}
@end
OUTPUT
NSSavePanel *panel = [NSSavePanel savePanel];
[panel setDefaultNewFolderName:@"Parag"];
NSInteger result = [panel runModal];
if (result == NSFileHandlingPanelOKButton) {
//NSArray *urls = [panel URLs];
[panel orderOut:nil];
}