defaultManager
デフォルトのファイルマネージャーを返します
解説
デフォルトのファイルマネージャーを返します。
返り値
( NSFileManager * )
ファイルマネージャー
引数
フレームワーク
Foundation
クラス
NSFileManager
Class Methods
使用可能
10.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSString *str = @"~/"; NSFileManager *myFile = [ NSFileManager defaultManager]; [myFile changeCurrentDirectoryPath:[str stringByExpandingTildeInPath]]; NSLog([myFile currentDirectoryPath]); } @end