在Windows CMD中递归创建子文件夹

时间:2017-03-14 14:24:05

标签: windows batch-file recursion cmd

我有一个名为TEXT的变量,我想要实现的是编写一个.bat脚本,该脚本将使用TEXT的字符创建文件夹,并递归地重复此操作深度。例如,我们假设enter image description here深度为1TEXT等于HI我需要此批处理脚本来创建两个名为H和{{1}的文件夹在这些文件夹下,还应该存在两个子文件夹名称IH。谢谢!

1 个答案:

答案 0 :(得分:1)

虽然你没有表现出任何努力,但我决定提供一个脚本,因为任务很好:

In [331]: img.shape
Out[331]: (250L, 200L)

In [332]: img.dtype
Out[332]: dtype('uint8')

In [333]: d = (1, 2)

In [334]: theta = (0, np.pi/4, np.pi/2, 3*np.pi/4)

In [335]: props = ('contrast', 'homogeneity')

In [336]: levels = 256

In [337]: win = 19

In [338]: %time feature_map = haralick_features(img, win, d, theta, levels, props)
Wall time: 5min 53s    

In [339]: feature_map.shape
Out[339]: (250L, 200L, 16L)

In [340]: feature_map[0, 0, :]    
Out[340]:  
array([ 10.3314,   0.3477,  25.1499,   0.2738,  25.1499,   0.2738,
        25.1499,   0.2738,  23.5043,   0.2755,  43.5523,   0.1882,
        43.5523,   0.1882,  43.5523,   0.1882])

In [341]: io.imshow(img)
Out[341]: <matplotlib.image.AxesImage at 0xce4d160>