| Home 目次>ApplicationKit>NSFileWrapper | |
isRegularFile
ファイルラッパーは普通のファイルかを返します
-(BOOL) isRegularFile
【返り値】 | |
| BOOL | YES/NO |
【解説】
ファイルラッパーは普通のファイルかを返します。
普通のファイルならYESを返します。
そうでなければ(ディレクトリやシンボリックリンクなど)NOを返します。
【例文】
#import "MyObject.h"
@implementation MyObject
- (IBAction)myAction:(id)sender
{
//ファイルラッパー
NSFileWrapper *theWrapper = [[[NSFileWrapper alloc] initWithPath:[[NSBundle mainBundle]
pathForResource:@"image" ofType:@"tiff"]] autorelease];
if ([theWrapper isRegularFile]){
NSLog(@"YES");
}else{
NSLog(@"NO");
}
}
@end
![]() | |
この記事を評価してください。
| Home 目次>ApplicationKit>NSFileWrapper | 修正日2006.12.26 |