MedicalHelperDicomFindFilesbySeries Method |
Given the path to a DICOM file, returns a list containing all the files in
the same directory that are part of the same DICOM series, based on the
series UID (0x0020,0x000E).
(0020,000E) Series instance UID (required)
(0020,0011) Series number (required but may be "unknown")
(0008,103E) Series description (optional)
Namespace: OIV.Medical.HelpersAssembly: OIV.Medical (in OIV.Medical.dll) Version: 2025.1.1.Release.5f9de35910b5f5a39847f4b67bd6e4c2b57f7a23
Syntaxpublic static int DicomFindFilesbySeries(
string firstFile,
out List<string> files
)
Public Shared Function DicomFindFilesbySeries (
firstFile As String,
<OutAttribute> ByRef files As List(Of String)
) As Integer
public:
static int DicomFindFilesbySeries(
String^ firstFile,
[OutAttribute] List<String^>^% files
)
static member DicomFindFilesbySeries :
firstFile : string *
files : List<string> byref -> int
Parameters
- firstFile
- Type: SystemString
- files
- Type: System.Collections.GenericListString
Return Value
Type:
Int32Returns 0 if the specified file was not found
or is not a valid DICOM file.
See Also