TICDSFileManagerBasedDocumentSyncManager Class Reference
Inherits from | TICDSDocumentSyncManager : NSObject |
Declared in | TICDSFileManagerBasedDocumentSyncManager.h |
Overview
The TICDSFileManagerBasedDocumentSyncManager
describes a class used to synchronize documents with a remote service that can be accessed via an NSFileManager
. This includes:
- Dropbox on the desktop (files are typically accessed via
~/Dropbox
) - iDisk on the desktop
No FileManagerBased-specific settings are required when you create a TICDSFileManagerBasedDocumentSyncManager
–the applicationDirectoryPath
is set automatically when you register (based on the properties set on the TICDSFileManagerBasedApplicationSyncManager
).
Tasks
Properties
-
directoryWatcher
A
propertyTIKQDirectoryWatcher
used to watch for changes in theSyncChanges
directories for this document. -
watchedClientDirectoryIdentifiers
A mutable array containing the identifiers of clients currently being watched.
property
Paths
-
applicationDirectoryPath
The path to the root of the application. This will be set automatically when you register and supply a
propertyTICDSFileManagerBasedApplicationSyncManager
. -
clientDevicesDirectoryPath
The path to the
propertyClientDevices
directory. -
deletedDocumentsThisDocumentIdentifierPlistPath
The path to this document’s
propertyidentifier.plist
file inside theDeletedDocuments
directory. -
documentsDirectoryPath
The path to the
propertyDocuments
directory. -
thisDocumentDirectoryPath
The path to this document’s directory inside the
propertyDocuments
directory. -
thisDocumentDeletedClientsDirectoryPath
The path to this document’s
propertyDeletedClients
directory. -
thisDocumentSyncChangesDirectoryPath
The path to this document’s
propertySyncChanges
directory. -
thisDocumentSyncChangesThisClientDirectoryPath
The path to this client’s directory inside this document’s
propertySyncChanges
directory. -
thisDocumentSyncCommandsDirectoryPath
The path to this document’s
propertySyncCommands
directory. -
thisDocumentSyncCommandsThisClientDirectoryPath
The path to this client’s directory inside this document’s
propertySyncCommands
directory. -
thisDocumentTemporaryWholeStoreThisClientDirectoryPath
The path to this client’s temporary
propertyWholeStore
directory. -
thisDocumentTemporaryWholeStoreFilePath
The path to this client’s temporary
propertyWholeStore.ticdsync
file. -
thisDocumentTemporaryAppliedSyncChangeSetsFilePath
The path to this client’s temporary
propertyAppliedSyncChangeSets.ticdsync
file. -
thisDocumentWholeStoreDirectoryPath
The path to this document’s
propertyWholeStore
directory. -
thisDocumentWholeStoreThisClientDirectoryPath
The path to this client’s directory inside this document’s
propertyWholeStore
directory. -
thisDocumentWholeStoreFilePath
The path to this client’s
propertyWholeStore.ticdsync
file. -
thisDocumentAppliedSyncChangeSetsFilePath
The path to this client’s
propertyAppliedSyncChangeSets.ticdsync
file. -
thisDocumentRecentSyncsDirectoryPath
The path to this document’s
propertyRecentSyncs
directory. -
thisDocumentRecentSyncsThisClientFilePath
The path to this client’s RecentSync file inside this document’s
propertyRecentSyncs
directory.
Properties
applicationDirectoryPath
The path to the root of the application. This will be set automatically when you register and supply a TICDSFileManagerBasedApplicationSyncManager
.
@property (nonatomic, copy) NSString *applicationDirectoryPath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
clientDevicesDirectoryPath
The path to the ClientDevices
directory.
@property (weak, nonatomic, readonly) NSString *clientDevicesDirectoryPath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
deletedDocumentsThisDocumentIdentifierPlistPath
The path to this document’s identifier.plist
file inside the DeletedDocuments
directory.
@property (weak, nonatomic, readonly) NSString *deletedDocumentsThisDocumentIdentifierPlistPath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
directoryWatcher
A TIKQDirectoryWatcher
used to watch for changes in the SyncChanges
directories for this document.
@property (nonatomic, readonly) TIKQDirectoryWatcher *directoryWatcher
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
documentsDirectoryPath
The path to the Documents
directory.
@property (weak, nonatomic, readonly) NSString *documentsDirectoryPath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentAppliedSyncChangeSetsFilePath
The path to this client’s AppliedSyncChangeSets.ticdsync
file.
@property (weak, nonatomic, readonly) NSString *thisDocumentAppliedSyncChangeSetsFilePath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentDeletedClientsDirectoryPath
The path to this document’s DeletedClients
directory.
@property (weak, nonatomic, readonly) NSString *thisDocumentDeletedClientsDirectoryPath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentDirectoryPath
The path to this document’s directory inside the Documents
directory.
@property (weak, nonatomic, readonly) NSString *thisDocumentDirectoryPath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentRecentSyncsDirectoryPath
The path to this document’s RecentSyncs
directory.
@property (weak, nonatomic, readonly) NSString *thisDocumentRecentSyncsDirectoryPath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentRecentSyncsThisClientFilePath
The path to this client’s RecentSync file inside this document’s RecentSyncs
directory.
@property (weak, nonatomic, readonly) NSString *thisDocumentRecentSyncsThisClientFilePath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentSyncChangesDirectoryPath
The path to this document’s SyncChanges
directory.
@property (weak, nonatomic, readonly) NSString *thisDocumentSyncChangesDirectoryPath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentSyncChangesThisClientDirectoryPath
The path to this client’s directory inside this document’s SyncChanges
directory.
@property (weak, nonatomic, readonly) NSString *thisDocumentSyncChangesThisClientDirectoryPath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentSyncCommandsDirectoryPath
The path to this document’s SyncCommands
directory.
@property (weak, nonatomic, readonly) NSString *thisDocumentSyncCommandsDirectoryPath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentSyncCommandsThisClientDirectoryPath
The path to this client’s directory inside this document’s SyncCommands
directory.
@property (weak, nonatomic, readonly) NSString *thisDocumentSyncCommandsThisClientDirectoryPath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentTemporaryAppliedSyncChangeSetsFilePath
The path to this client’s temporary AppliedSyncChangeSets.ticdsync
file.
@property (weak, nonatomic, readonly) NSString *thisDocumentTemporaryAppliedSyncChangeSetsFilePath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentTemporaryWholeStoreFilePath
The path to this client’s temporary WholeStore.ticdsync
file.
@property (weak, nonatomic, readonly) NSString *thisDocumentTemporaryWholeStoreFilePath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentTemporaryWholeStoreThisClientDirectoryPath
The path to this client’s temporary WholeStore
directory.
@property (weak, nonatomic, readonly) NSString *thisDocumentTemporaryWholeStoreThisClientDirectoryPath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentWholeStoreDirectoryPath
The path to this document’s WholeStore
directory.
@property (weak, nonatomic, readonly) NSString *thisDocumentWholeStoreDirectoryPath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h
thisDocumentWholeStoreFilePath
The path to this client’s WholeStore.ticdsync
file.
@property (weak, nonatomic, readonly) NSString *thisDocumentWholeStoreFilePath
Declared In
TICDSFileManagerBasedDocumentSyncManager.h