Type Method
型メソッド
fileURLWithFileSystemRepresentation:isDirectory:relativeToURL:
Returns a new URL object initialized with a C string representing a local file system path.
新しいURLオブジェクトを返します、あるローカルファイルシステムパスを表しているC文字列表現で初期化されます。
Declaration
宣言
+ (NSURL
*)fileURLWithFileSystemRepresentation:(const char *)path
isDirectory:(BOOL)isDir
relativeToURL:(NSURL
*)baseURL;
Parameters
パラメータ
path
A null-terminated C string in file system representation containing the path to represent as a URL. If this path is a relative path, it is treated as being relative to the current working directory.
URLとして表すことになるパスを含んでいるファイルシステム表現でのヌル終端されたC文字列。このパスが相対パスならば、それは現在の作業ディレクトリに相対的であるとして扱われます。
isDir
YES
if the last path part is a directory, otherwise NO
.
YES
、もし最後のパス部分がディレクトリならば、そうでなければNO
。
baseURL
The base URL for the new URL object. This must be a file URL. If path
is absolute, this URL is ignored.
新しいURLオブジェクトに対する基準URL。これはファイルURLでなければなりません。path
が絶対的ならば、このURLは無視されます。
Return Value
戻り値
Returns the new object.
新しいオブジェクトを返します。
Discussion
議論
The file system representation format is described in File System Programming Guide.
ファイルシステム表現形式は、File System Programming Guideにおいて記述されます。
See Also
参照
Creating an NSURL Object
NSURLオブジェクトを作成する
+ URLWithString:
Creates and returns an NSURL object initialized with a provided URL string.
提供されたURL文字列で初期化されるNSURLを作成して返します。
- initWithString:
Initializes an NSURL object with a provided URL string.
NSURLオブジェクトをある提供されたURL文字列で初期化します。
+ URLWithString:relativeToURL:
Creates and returns an NSURL object initialized with a base URL and a relative string.
基準URLと相対文字列でNSURLオブジェクトを作成して返します。
+ fileURLWithPath:isDirectory:
Initializes and returns a newly created NSURL object as a file URL with a specified path.
新しく作成されたNSURLオブジェクトをファイルURLとして初期化して返します、ある指定されたパスを持ちます。
- initFileURLWithPath:isDirectory:
Initializes a newly created NSURL referencing the local file or directory at path
.
新しく作成されたNSURLを初期化します、path
でのローカルのファイルまたはディレクトリを参照しています。
+ fileURLWithPath:
Initializes and returns a newly created NSURL object as a file URL with a specified path.
新しく作成されたNSURLオブジェクトをファイルURLとして初期化して返します、ある指定されたパスを持ちます。
- initFileURLWithPath:
Initializes a newly created NSURL referencing the local file or directory at path
.
新しく作成されたNSURLを初期化します、path
でのローカルのファイルまたはディレクトリを参照しています。
+ fileURLWithPathComponents:
Initializes and returns a newly created NSURL object as a file URL with specified path components.
新しく作成されたNSURLオブジェクトをファイルURLとして初期化して返します、指定されたパス構成要素いくらかを持ちます。