共用方式為


NSFileManager.GetSkipBackupAttribute 方法

定義

多載

GetSkipBackupAttribute(String, NSError)

傳回檔案上已設定 SkipBackup to iCloud 屬性的狀態。

GetSkipBackupAttribute(String)

傳回檔案上已設定 SkipBackup to iCloud 屬性的狀態。

GetSkipBackupAttribute(String, NSError)

傳回檔案上已設定 SkipBackup to iCloud 屬性的狀態。

public static bool GetSkipBackupAttribute (string filename, out Foundation.NSError error);
static member GetSkipBackupAttribute : string *  -> bool

參數

filename
String

要探查的檔案路徑。

error
NSError

如果沒有任何錯誤,則錯誤會設定為 null,如果發生問題,則會指向 NSError 的實例。

傳回

如果已設定擴充屬性,則為 true。

備註

如果檔案標示為不是由 iCloud 備份,則會傳回 true,否則會傳回 false。 這個高階 API 會根據執行的 iOS 版本自動調整本身。 在 iOS 5.0.1 上 (只會) 它會使用舊的 getxattr API 來取得 「com.apple.MobileBackup」 屬性的值。 在 iOS 5.1 (和更新版本上) ,它會使用 NSUrlIsExcludedFromBackupKey 來完成相同的作業。

適用於

GetSkipBackupAttribute(String)

傳回檔案上已設定 SkipBackup to iCloud 屬性的狀態。

public static bool GetSkipBackupAttribute (string filename);
static member GetSkipBackupAttribute : string -> bool

參數

filename
String

要探查的檔案路徑。

傳回

如果已設定擴充屬性,則為 true。

備註

如果檔案標示為不是由 iCloud 備份,則會傳回 true,否則會傳回 false。 這個高階 API 會根據執行的 iOS 版本自動調整本身。 在 iOS 5.0.1 上 (只會) 它會使用舊的 getxattr API 來取得 「com.apple.MobileBackup」 屬性的值。 在 iOS 5.1 (和更新版本上) ,它會使用 NSUrlIsExcludedFromBackupKey 來完成相同的作業。

適用於