Instance Method インスタンスメソッド

isExecutableFileAtPath:

Returns a Boolean value that indicates whether the operating system appears able to execute a specified file. オペレーティングシステムが指定されたファイルを実行する能力を備えるかどうかを指し示すブール値を返します。

Declaration 宣言

- (BOOL)isExecutableFileAtPath:(NSString *)path;

Parameters パラメータ

path

A file path. ファイルパス。

Return Value 戻り値

YES if the current process has execute privileges for the file at path; otherwise NO if the process does not have execute privileges or the existence of the file could not be determined. YES、もし現在のプロセスがpathでのファイルの特権を発効したならば;そうでなければプロセスが特権を発効しなかったまたはファイルの実在が明らかにできなかったならばNO

Discussion 議論

If the file at path is inaccessible to your app, perhaps because it does not have search privileges for one or more parent directories, this method returns NO. This method traverses symbolic links in the path. This method also uses the real user ID and group ID, as opposed to the effective user and group IDs, to determine if the file is executable. pathでのファイルがあなたのアプリにアクセスできないならば、おそらくそれがひとつ以上の親ディレクトリに対する検索特権を持たないため、このディレクトリはNOを返します。このメソッドは、パスでのシンボリックリンクを辿ります。このメソッドはまた、実ユーザIDおよびグループIDを使うことで、実効ユーザおよびグループIDではなく、ファイルが実行可能であるかを決定します。

See Also 参照

Determining Access to Files ファイルへのアクセスを決定する