Type Method 型メソッド

writeBookmarkData(_:to:options:)

Creates an alias file on disk at a specified location with specified bookmark data. エイリアスファイルをディスク上である指定された位置で作成します、指定されたブックマークデータを使います。

Declaration 宣言

class func writeBookmarkData(_ bookmarkData: Data, 
                          to bookmarkFileURL: URL, 
                     options: NSURL.BookmarkFileCreationOptions) throws

Parameters パラメータ

bookmarkData

The bookmark data containing information for the alias file. エイリアスファイルに対する情報を含んでいるブックマーク。

bookmarkFileURL

The desired location of the alias file. エイリアスファイルの望ましい位置。

options オプション

Options taken into account when creating the alias file. エイリアスファイルを作成する時に考慮に入れるオプション。

error

The error that occurred in the case that the alias file cannot be created. エイリアスファイルが作成されることができないという事情で発生したエラー。

Return Value 戻り値

true if the alias file is successfully created; otherwise, false. true、もしエイリアスファイルがうまく作成されるならば;そうでなければ、false

Discussion 議論

This method will produce an error if bookmarkData was not created with the NSURLBookmarkCreationSuitableForBookmarkFile option. このメソッドは、bookmarkDataNSURLBookmarkCreationSuitableForBookmarkFileオプションで作成されなかったならばエラーを生成するでしょう。

If bookmarkFileURL points to a directory, the alias file will be created in that directory with its name derived from the information in bookmarkData. If bookmarkFileURL points to a file, the alias file will be created with the location and name indicated by bookmarkFileURL, and its extension will be changed to .alias if it is not already. bookmarkFileURLがディレクトリを指し示すならば、エイリアスファイルはそのディレクトリの中に、bookmarkDataの中の情報から引き出されるそれの名前で作成されるでしょう。bookmarkFileURLがファイルを指し示すならば、エイリアスファイルはその位置でそしてbookmarkFileURLによって示される名前で作成されるでしょう、そしてそれの拡張子は.aliasに変更されるでしょう、もしそれがまだならば。

See Also 参照

Working with Bookmark Data ブックマークデータを扱う