private void CreateEntry(LocalContent local, string checkSum, string mime, int size, List <string> labels)
        {
            var ec            = new EntryCreate(checkSum, size, mime, labels, null, local.GetPathInCloud);
            var entryResponse = _entriesApi.CreateEntry(_bucketData.bucketId, ec);

            _windowElements.WriteLog($"Created entry | path {entryResponse.Path} " + $"| hash {entryResponse.ContentHash} " + $"| size {entryResponse.ContentSize} " + $"| type {entryResponse.ContentType} ");
            Upload(local);
        }