The FileWrapper class provides access to the attributes and contents of file system nodes. A file system node is a file, directory, or symbolic link. Instances of this class are known as file wrappers.FileWrapperクラスは、ファイルシステムノードの属性と内容へのアクセスを提供します。ファイルシステムノードは、ファイル、ディレクトリ、またはシンボリックリンクです。このクラスのインスタンスは、ファイルラッパーとして知られます。
File wrappers represent a file system node as an object that can be displayed as an image (and possibly edited in place), saved to the file system, or transmitted to another application.
ファイルラッパーは、ファイルシステムノードを、画像として表示(そしておそらくは場に合わせて手直し)されること、ファイルシステムに保存されること、または別のアプリケーションに伝えられることが可能なオブジェクトとして表します。
There are three types of file wrappers:
3つの方のファイルラッパーがあります:
Regular-file file wrapper: Represents a regular file.通常ファイルファイルラッパー: 通常のファイルを表します。
Directory file wrapper: Represents a directory.ディレクトリファイルラッパー: ディレクトリを表します。
Symbolic-link file wrapper: Represents a symbolic link.シンボリックリンクファイルラッパー: シンボリックリンクを表します。
A file wrapper has these attributes:
ファイルラッパーは、これらの属性を持ちます:
Filename. Name of the file system node the file wrapper represents.ファイル名。 ファイルラッパーが表すファイルシステムノードの名前。
file-system attributes. See FileManager for information on the contents of the attributes dictionary.ファイルシステム属性。FileManagerをattributes辞書の内容に関する情報として見てください。
Regular-file contents. Applicable only to regular-file file wrappers.通常ファイル内容。 通常ファイルファイルラッパーに対してのみ適用可能です。
File wrappers. Applicable only to directory file wrappers.ファイルラッパー。 ディレクトリファイルラッパーに対してのみ適用可能です。
Destination node. Applicable only to symbolic-link file wrappers.行き先ノード。 シンボリックリンクファイルラッパーに対してのみ適用可能です。
Topics
話題
Creating File Wrappers
ファイルラッパーを作成する
This class has several designated initializers.
このクラスは、いくつかの指定イニシャライザを持ちます。
Initializes a file wrapper instance whose kind is determined by the type of file-system node located by the URL.
ファイルラッパーインスタンスを初期化します、それのもつ種類はURLによって位置決めされるファイルシステムノードの型によって決定されます。
Initializes a file wrapper instance whose kind is determined by the type of file-system node located by the path.
ファイルラッパーインスタンスを初期化します、それのもつ種類はパスによって位置決めされるファイルシステムノードの型によって決定されます。
This property contains a boolean value that indicates whether the file wrapper object is a regular-file.
このプロパティはブール値を含みます、それはファイルラッパーオブジェクトが通常ファイルかどうかを指し示します。
This property contains a boolean value indicating whether the file wrapper is a directory file wrapper.
このプロパティはブール値を含みます、ファイルラッパーがディレクトリファイルラッパーかどうかを指し示しています。
Creates a file wrapper from a given file-system node and adds it to the receiver, which must be a directory file wrapper.
ファイルラッパーをある与えられたファイルシステムノードから作成してそれをレシーバに加えます、それはディレクトリファイルラッパーでなければなりません。
Creates a regular-file file wrapper with the given contents and adds it to the receiver, which must be a directory file wrapper.
与えられた内容を持つ通常ファイルファイルラッパーを作成してそれをレシーバに加えます、それはディレクトリファイルラッパーでなければなりません。
Creates a symbolic-link file wrapper pointing to a given file-system node and adds it to the receiver, which must be a directory file wrapper.
ある与えられたファイルシステムノードを指すシンボリックリンクファイルラッパーを作成してそれをレシーバに加えます、それはディレクトリファイルラッパーでなければなりません。
Provides the pathname referenced by the file wrapper object, which must be a symbolic-link file wrapper.
ファイルラッパーオブジェクト、それはシンボリックリンクファイルラッパーである必要があります、によって参照されるパス名を提供します。
Indicates whether the contents of a file wrapper matches a directory, regular file, or symbolic link on disk.
ファイルラッパーの内容がディスク上のディレクトリ、通常ファイル、またはシンボリックリンクと合致するかどうかを指し示します。