Instance Method
インスタンスメソッド
createSymbolicLinkAtPath:pathContent:
Creates a symbolic link identified by a given path that refers to a given location.
与えられたパスによって識別されるシンボリックリンクを作成します、それは与えられた場所に言及します。
Declaration
宣言
- (BOOL)createSymbolicLinkAtPath:(NSString
*)path
pathContent:(NSString
*)otherpath;
Parameters
パラメータ
path
The path for a symbolic link.
シンボリックリンクに対するパス。
otherPath
The path to which path
should refer.
それに対してpath
が参照すべきパス。
Return Value
戻り値
YES
if the operation is successful, otherwise NO
. Returns NO
if a file, directory, or symbolic link identical to path
already exists.
操作が成功するならばYES
、そうでないならばNO
。NO
を、もし既にpath
とまったく同じファイル、ディレクトリ、またはシンボリックリンクが存在するならば返します。
Discussion
議論
Creates a symbolic link identified by path
that refers to the location otherPath
in the file system.
path
によって識別されるシンボリックリンクを作成します、それは場所otherPath
をファイルシステムにおいて参照します。
Special Considerations
特別な注意事項
Because this method does not return error information, it has been deprecated as of OS X v10.5. Use createSymbolicLinkAtPath:withDestinationPath:error:
instead.
このメソッドがエラー情報を返さないことから、それはOS X v10.5現在で非推奨にされます。createSymbolicLinkAtPath:withDestinationPath:error:
を代わりに使ってください。
See Also
参照
Deprecated Methods
非推奨メソッド
- copyPath:toPath:handler:
Copies the directory or file specified in a given path to a different location in the file system identified by another path.
与えられたパスの中の指定されたディレクトリまたはファイルを別のパスによって識別されるファイルシステムの中の異なる場所へとコピーします。
Deprecated
非推奨
- movePath:toPath:handler:
Moves the directory or file specified by a given path to a different location in the file system identified by another path.
与えられたパスによって指定されるディレクトリまたはファイルを、別のパスによって識別されるファイルシステムの中の異なる場所に移動します。
Deprecated
非推奨
- removeFileAtPath:handler:
Deletes the file, link, or directory (including, recursively, all subdirectories, files, and links in the directory) identified by a given path.
与えられたパスによって識別されるファイル、リンク、またはディレクトリを(再帰的にそのディレクトリの中の全ての下位ディレクトリ、ファイル、そしてリンクを含めて)消去します。
Deprecated
非推奨
- fileAttributesAtPath:traverseLink:
Returns a dictionary that describes the POSIX attributes of the file specified at a given.
与えられるところで指定されたファイルのPOSIX属性を記述する辞書を返します。
Deprecated
非推奨
- fileSystemAttributesAtPath:
Returns a dictionary that describes the attributes of the mounted file system on which a given path resides.
そこにおいて与えられたパスが存在するところのマウントされたファイルシステムの属性を記述する辞書を返します。
Deprecated
非推奨
- directoryContentsAtPath:
Returns the directories and files (including symbolic links) contained in a given directory.
与えられたディレクトリの中に含まれる(シンボリックリンクを含む)ディレクトリとファイルを返します。
Deprecated
非推奨
- pathContentOfSymbolicLinkAtPath:
Returns the path of the directory or file that a symbolic link at a given path refers to.
与えられたパスでのシンボリックリンクが参照するディレクトリまたはファイルのパスを返します。
Deprecated
非推奨
- fileManager:shouldProceedAfterError:
An NSFileManager
object sends this message to its handler for each error it encounters when copying, moving, removing, or linking files or directories.
ファイルまたはディレクトリをコピー、移動、削除、またはリンクする場合にそれが出くわす各エラーに対するそれのハンドラにこのメッセージを送ったNSFileManager
オブジェクト。
Deprecated
非推奨
- fileManager:willProcessPath:
An NSFileManager
object sends this message to a handler immediately before attempting to move, copy, rename, or delete, or before attempting to link to a given path.
移動、コピー、名前変更、または消去を試みる直前に、または与えられたパスにリンクを試みる前にハンドラにこのメッセージを送ったNSFileManager
オブジェクト。
Deprecated
非推奨
Related Documentation
関連文書