Instance Method
インスタンスメソッド
createSymbolicLink(atPath:pathContent:)
Creates a symbolic link identified by a given path that refers to a given location.
与えられたパスによって識別されるシンボリックリンクを作成します、それは与えられた場所に言及します。
Declaration
宣言
func createSymbolicLink(atPath path: String
,
pathContent otherpath: String
) -> Bool
Parameters
パラメータ
path
The path for a symbolic link.
シンボリックリンクに対するパス。
otherPath
The path to which path
should refer.
それに対してpath
が参照すべきパス。
Return Value
戻り値
true
if the operation is successful, otherwise false
. Returns false
if a file, directory, or symbolic link identical to path
already exists.
操作が成功するならばtrue
、そうでないならばfalse
。false
を、もし既に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 createSymbolicLink(atPath:withDestinationPath:)
instead.
このメソッドがエラー情報を返さないことから、それはOS X v10.5現在で非推奨にされます。createSymbolicLink(atPath:withDestinationPath:)
を代わりに使ってください。
See Also
参照
Deprecated Methods
非推奨メソッド
func fileManager(FileManager, willProcessPath: String)
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
関連文書