CmisSync.Lib.SyncItem.FileExistsLocal C# (CSharp) Method

FileExistsLocal() public method

Whether the file exists locally.
public FileExistsLocal ( ) : bool
return bool
        virtual public bool FileExistsLocal()
        {
            bool exists = File.Exists(LocalPath);
            Logger.Debug("File.Exists(" + LocalPath + ") = " + exists);
            return exists;
        }
    }