sort-file-list
Advanced tools
Comparing version 0.0.1 to 0.0.2
124
index.js
@@ -24,38 +24,30 @@ /** | ||
console.log("separator = ", options.separator); | ||
// 返回值的正负值 | ||
let order_add = 1; | ||
let order_dec = -1; | ||
//处理倒序.. | ||
if(options.reverse == true) { | ||
order_add = -1; | ||
order_dec = 1; | ||
} | ||
function order_func(str_a, str_b, str_options) { | ||
let order_add = 1; | ||
let order_dec = -1; | ||
function order_func(step_a, step_b) { | ||
if(str_options.reverse == true) { | ||
order_add = -1; | ||
order_dec = 1; | ||
} | ||
if(options.diff_is_number == true) { | ||
//不同的部分是数字... | ||
let num_a = Number(str_a); | ||
let num_b = Number(str_b); | ||
if(num_a>num_b) { | ||
//字符串部分比较 | ||
if(step_a.str > step_b.str) { | ||
//字符串-大于 | ||
return order_add; | ||
} | ||
else if(num_a<num_b) { | ||
else if(step_a.str < step_b.str) { | ||
//字符串-小于 | ||
return order_dec; | ||
} | ||
else { | ||
return 0; | ||
} | ||
}else{ | ||
if(str_a>str_b) { | ||
// 数字部分比较 | ||
if(step_a.num > step_b.num) { | ||
return order_add; | ||
} | ||
else if(str_a<str_b) { | ||
else if(step_a.num < step_b.num) { | ||
return order_dec; | ||
@@ -66,17 +58,36 @@ } | ||
} | ||
} | ||
function field_sep(str){ | ||
let out = {str:"", num:0}; | ||
let pos = str.length; | ||
} | ||
for (let i = str.length - 1; ; i--) { | ||
if(i<0) { | ||
break; | ||
} | ||
function isIntNum(val) { | ||
var regPos = / ^\d+$/; // 非负整数 | ||
var regNeg = /^\-[1-9][0-9]*$/; // 负整数 | ||
if(regPos.test(val) || regNeg.test(val)){ | ||
return true; | ||
}else{ | ||
return false; | ||
const element = str.charAt(i); | ||
if(isNaN(element)) { | ||
pos = i + 1; | ||
break; | ||
} | ||
pos = i; | ||
} | ||
if(pos>0){ | ||
out.str = str.substring(0, pos); | ||
} | ||
out.num = str.substring(pos); | ||
if(out.num == ""){ | ||
out.num = "0"; | ||
} | ||
out.num = Number(out.num); | ||
//console.log(pos, '->', out, " [", str, "]", ); | ||
return out; | ||
} | ||
@@ -86,5 +97,10 @@ | ||
filelist.sort(function(file_a,file_b){ | ||
if(file_a === file_b) { | ||
return 0; //二者完全相同,比较下一节点 | ||
} | ||
let file_a_list = file_a.split(options.separator); | ||
@@ -103,36 +119,19 @@ let file_b_list = file_b.split(options.separator); | ||
/////////////////////////////////////////////// | ||
// 去除,相同部分--开始 | ||
let str_a_len = element_a.length; | ||
let str_b_len = element_b.length; | ||
// 最少长度 | ||
let str_min_len = str_a_len<str_b_len?str_a_len:str_b_len; | ||
if(element_a === element_b) { | ||
continue; //二者完全相同,比较下一节点 | ||
} | ||
let diff_pos = 0; | ||
for (let i = 0; i < str_min_len; i++) { | ||
const ele_a = element_a[i]; | ||
const ele_b = element_b[i]; | ||
if(ele_a !== ele_b) { | ||
diff_pos = i; //计录二个字符串不同的起始位置... | ||
break; | ||
} | ||
if( (i + 1) == str_min_len) { | ||
// 解决 相同长度,取得的长度少一的BUG | ||
diff_pos = i+1; | ||
break; | ||
} | ||
let sep1 = field_sep(element_a); | ||
let sep2 = field_sep(element_b); | ||
let ret_val = 0; | ||
} | ||
let diff_str_a = (element_a.substring(diff_pos)); | ||
let diff_str_b = (element_b.substring(diff_pos)); | ||
// 去除,相同部分--结束 | ||
/////////////////////////////////////////////// | ||
//找同一节点... | ||
let ret_val = order_func(diff_str_a, diff_str_b, options); | ||
//字母部分相同..则按数字部分排序 | ||
ret_val = order_func(sep1, sep2); | ||
if(ret_val != 0) { | ||
return ret_val; | ||
} | ||
} | ||
@@ -160,1 +159,2 @@ | ||
module.exports = SortFile.default = SortFile; | ||
{ | ||
"name": "sort-file-list", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "sort file list", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -23,4 +23,121 @@ /** | ||
describe('length', function () { | ||
describe('基本', function () { | ||
describe('数字-1', function () { | ||
it('', function () { | ||
run(function () { | ||
let test_array = ["1005",'18','', 'aa000', 'bbb', '222cccc1', 'aa','b1']; | ||
var out_array = SortFile(test_array, {diff_is_number:true}); | ||
console.log(out_array); | ||
assert(out_array[0] === '' && out_array[out_array.length - 1] === 'bbb'); | ||
}, 1); | ||
}); | ||
}); | ||
describe('数字-2', function () { | ||
it('', function () { | ||
run(function () { | ||
let test_array = ["a1005",'a18']; | ||
var out_array = SortFile(test_array, {diff_is_number:true}); | ||
console.log(out_array); | ||
assert(out_array[0] === 'a18' && out_array[out_array.length - 1] === 'a1005'); | ||
}, 1); | ||
}); | ||
}); | ||
describe('数字-3', function () { | ||
it('', function () { | ||
run(function () { | ||
let test_array = ["ab1005",'aa18','ac']; | ||
var out_array = SortFile(test_array, {diff_is_number:true}); | ||
console.log(out_array); | ||
assert(out_array[0] === 'aa18' && out_array[out_array.length - 1] === 'ac'); | ||
}, 1); | ||
}); | ||
}); | ||
describe('数字-1', function () { | ||
it('', function () { | ||
run(function () { | ||
let test_array = ["a1005",'a']; | ||
var out_array = SortFile(test_array, {diff_is_number:true}); | ||
console.log(out_array); | ||
assert(out_array[0] === 'a' && out_array[out_array.length - 1] === 'a1005'); | ||
}, 1); | ||
}); | ||
}); | ||
describe('数字-1', function () { | ||
it('', function () { | ||
run(function () { | ||
let test_array = ["a1005",'18']; | ||
var out_array = SortFile(test_array, {diff_is_number:true}); | ||
console.log(out_array); | ||
assert(out_array[0] === '18' && out_array[out_array.length - 1] === 'a1005'); | ||
}, 1); | ||
}); | ||
}); | ||
describe('数字-1', function () { | ||
it('', function () { | ||
run(function () { | ||
let test_array = ['1','2','3','18',"1005","060","7",'8','9','10','11']; | ||
var out_array = SortFile(test_array, {diff_is_number:true}); | ||
console.log(out_array); | ||
assert(out_array[0] === '1' && out_array[out_array.length - 1] === '1005'); | ||
}, 1); | ||
}); | ||
}); | ||
describe('数字-1', function () { | ||
it('', function () { | ||
run(function () { | ||
let test_array = ["aa1005",'b18', 'b']; | ||
var out_array = SortFile(test_array, {diff_is_number:true}); | ||
console.log(out_array); | ||
assert(out_array[0] === 'aa1005' && out_array[out_array.length - 1] === 'b18'); | ||
}, 1); | ||
}); | ||
}); | ||
}); | ||
describe('混合', function () { | ||
describe('顺序', function () { | ||
it('数字', function () { | ||
run(function () { | ||
let test_array = ['1','2','3','18',"1005","060","7",'8','9','10','11']; | ||
var out_array = SortFile(test_array, {diff_is_number:true}); | ||
console.log(out_array); | ||
assert(out_array[0] === '1' && out_array[out_array.length - 1] === '1005'); | ||
}, 1); | ||
}); | ||
}); | ||
describe('顺序', function () { | ||
it('数字', function () { | ||
run(function () { | ||
let test_array = ['a','ab','abc','111',"cC","D","A",'zz','c','333','222']; | ||
var out_array = SortFile(test_array); | ||
console.log(out_array); | ||
assert(out_array[0] === '111' && out_array[out_array.length - 1] === 'zz'); | ||
}, 1); | ||
}); | ||
}); | ||
describe('The order', function () { | ||
@@ -51,2 +168,4 @@ it('无扩展名-文件-正序', function () { | ||
describe('node', function () { | ||
@@ -172,5 +291,290 @@ | ||
}); | ||
describe('实例', function () { | ||
describe('node', function () { | ||
it('DICOM文件1', function () { | ||
run(function () { | ||
let test_array = [ | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.1.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.10.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.11.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.12.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.13.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.14.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.15.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.16.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.17.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.18.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.19.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.2.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.20.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.21.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.22.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.23.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.24.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.25.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.3.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.4.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.5.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.6.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.7.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.8.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.9.dcm?path=D:\\tmp\\5dcm\\." | ||
]; | ||
var out_array = SortFile(test_array, {diff_is_number:true}); | ||
console.log(out_array); | ||
assert(out_array[0] === '/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.1.dcm?path=D:\\tmp\\5dcm\\.' && out_array[out_array.length - 1] === '/dicom/1.2.840.113619.2.55.3.604640569.363.1652092605.988/1.2.840.113619.2.55.3.604640569.363.1652092605.989.25.dcm?path=D:\\tmp\\5dcm\\.'); | ||
}, 1); | ||
}); | ||
}); | ||
describe('node', function () { | ||
it('DICOM文件2', function () { | ||
run(function () { | ||
let test_array = [ | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.1.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.2.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.3.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.9.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.10.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.100.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.101.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.11.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.102.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.12.dcm?path=D:\\tmp\\5dcm\\.", | ||
]; | ||
var out_array = SortFile(test_array, {diff_is_number:true}); | ||
console.log(out_array); | ||
assert(out_array[0] === '/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.1.dcm?path=D:\\tmp\\5dcm\\.' && out_array[out_array.length - 1] === '/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.102.dcm?path=D:\\tmp\\5dcm\\.'); | ||
}, 1); | ||
}); | ||
}); | ||
describe('node', function () { | ||
it('DICOM文件2', function () { | ||
run(function () { | ||
let test_array = [ | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.1.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.2.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.3.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.4.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.5.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.6.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.7.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.8.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.9.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.10.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.100.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.101.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.11.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.102.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.12.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.103.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.13.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.19.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.20.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.21.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.22.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.23.dcm?path=D:\\tmp\\5dcm\\.", | ||
/* | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.24.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.25.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.26.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.27.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.28.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.29.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.30.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.31.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.32.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.33.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.34.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.35.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.36.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.37.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.38.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.39.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.40.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.41.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.42.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.43.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.44.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.45.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.46.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.47.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.48.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.49.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.50.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.51.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.52.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.53.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.54.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.55.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.56.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.57.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.58.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.59.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.60.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.61.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.62.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.63.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.64.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.65.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.66.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.67.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.68.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.69.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.70.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.71.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.72.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.73.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.74.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.75.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.76.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.77.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.78.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.79.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.80.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.81.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.82.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.83.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.84.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.85.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.86.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.87.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.88.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.89.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.90.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.91.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.92.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.93.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.94.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.95.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.96.dcm?path=D:\\tmp\\5dcm\\.", | ||
*/ | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.97.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.98.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.99.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.104.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.14.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.105.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.15.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.106.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.16.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.107.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.17.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.108.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.18.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.109.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.110.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.111.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.112.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.113.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.114.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.115.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.116.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.117.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.118.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.119.dcm?path=D:\\tmp\\5dcm\\.", | ||
/* | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.120.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.121.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.122.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.123.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.124.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.125.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.126.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.127.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.128.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.129.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.130.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.131.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.132.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.133.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.134.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.135.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.136.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.137.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.138.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.139.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.140.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.141.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.142.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.143.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.144.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.145.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.146.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.147.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.148.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.149.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.150.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.151.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.152.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.153.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.154.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.155.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.156.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.157.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.158.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.159.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.160.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.161.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.162.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.163.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.164.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.165.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.166.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.167.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.168.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.169.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.170.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.171.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.172.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.173.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.174.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.175.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.176.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.177.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.178.dcm?path=D:\\tmp\\5dcm\\.", | ||
*/ | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.179.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.180.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.181.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.182.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.183.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.184.dcm?path=D:\\tmp\\5dcm\\.", | ||
"/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.185.dcm?path=D:\\tmp\\5dcm\\.", | ||
]; | ||
var out_array = SortFile(test_array, {diff_is_number:true}); | ||
console.log("排序后:"); | ||
console.log(out_array); | ||
assert(out_array[0] === '/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.1.dcm?path=D:\\tmp\\5dcm\\.' && out_array[out_array.length - 1] === '/dicom/1.2.840.113619.2.55.3.604640569.492.1653261792.671.4/1.2.840.113619.2.55.3.604640569.492.1653261792.697.185.dcm?path=D:\\tmp\\5dcm\\.'); | ||
}, 1); | ||
}); | ||
}); | ||
}); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
52215
607
1