Leadtools.Dicom Namespace > DicomDirOptions Structure : RejectInvalidFileId Property |
public bool RejectInvalidFileId {get; set;}
'Declaration Public Property RejectInvalidFileId As Boolean
'Usage Dim instance As DicomDirOptions Dim value As Boolean instance.RejectInvalidFileId = value value = instance.RejectInvalidFileId
public bool RejectInvalidFileId {get; set;}
get_RejectInvalidFileId();
set_RejectInvalidFileId(value);
Object.defineProperty('RejectInvalidFileId');
"C:\DICOM Images\Sub1\Sub2\Sub3\Sub4\Sub5\Sub6\Sub7\Sub8\Brain"
"C:\DICOM Images\Patient 1\CT-10-Knee.dic"
The first filename is rejected because the number of components in the File ID exceeds 8 (there are 9 components, starting from "Sub1") and because lower case letters and spaces are used. The second filename is rejected because the number of characters in the last component, which is the short format of "CT-10-Knee.dic" (e.g., "CT-10-~1.dic") exceeds 8 and because lower case letters and spaces are used. On the other hand, the following filenames will not be rejected:
"C:\DICOM Images\SUB1\SUB2\SUB3\SUB4\SUB5\SUB6\SUB7\BRAIN"
"C:\DICOM Images\PATIENT1\KNEE"