To be returned from dtsDataSource.getNextDocInfo or dtsDataSource.getFileInfoByName from a data source
struct dtsDataSourceFileInfo { const char * filename; __int64 size; long errorCode; const char * errorMessage; dtsFileDate modified; dtsFileDate created; long accessResult; };
dtsviewr.h
|
Members |
Description |
|
const char * filename; |
Name of the item |
|
__int64 size; |
Size of the document in bytes. |
|
long errorCode; |
Error code, if any, returned from the data source. |
|
const char * errorMessage; |
Error message, if any, returned from the data source |
|
dtsFileDate modified; |
Modification date of the item (UTC) |
|
dtsFileDate created; |
Creation date of the item (UTC) |
|
long accessResult; |
DataSourceAccessResult value indicating whether the item could be accessed. |
|
Copyright (c) 1995-2012 dtSearch Corp. All rights reserved.
|