C# Class CmisSync.Lib.SyncItem

ファイルを表示 Open project: aegif/CmisSync

Protected Properties

Property Type Description
Logger log4net.ILog
database CmisSync.Lib.Database.Database
isFolder bool
localRelativePath string
localRoot string
remoteRelativePath string
remoteRoot string

Public Methods

Method Description
FileExistsLocal ( ) : bool

Whether the file exists locally.

Method Details

FileExistsLocal() public method

Whether the file exists locally.
public FileExistsLocal ( ) : bool
return bool

Property Details

Logger protected_oe static_oe property

protected static ILog,log4net Logger
return log4net.ILog

database protected_oe property

Reference to the CmisSync database. It is useful to get the remote path that matches a local path, or vice versa
protected Database,CmisSync.Lib.Database database
return CmisSync.Lib.Database.Database

isFolder protected_oe property

Whether the item is a folder or a file.
protected bool isFolder
return bool

localRelativePath protected_oe property

Local path of the item, relative to the local root Example: adir\afile.txt
protected string localRelativePath
return string

localRoot protected_oe property

Local root of the collection. Example: C:\Users\nico\CmisSync\A Project
protected string localRoot
return string

remoteRelativePath protected_oe property

Remote path of the item, relative to the remote root Example: adir/a
protected string remoteRelativePath
return string

remoteRoot protected_oe property

Remote root of the collection. Example: /sites/aproject
protected string remoteRoot
return string