- 论坛徽章:
- 0
|
原帖由 gucuiwen 于 2008-3-11 11:30 发表 ![]()
#!/usr/bin/env python
import os
def makedirectory(count=10, depth=3):
depth-=1
if depth == 0:
return 0
for i in range(count):
os ...
老大,这段代码运行起来会出错
还有这段,是我自己写的
>>> for i in range(1,1000):
os.makedirs("e:\\Directory\\"+str((i/100)%10)+"\\"+str((i/10)%10)+"\\"+str(i%10))
可以正常运行,建立树目录,
但是当要建立4级目录的时候,如下:
>>> for i in range(1,10000):
os.makedirs("e:\\x\\"+str((i/1000)%10)+"\\"+str((i/100)%10)+"\\"+str((i/10)%10)+"\\"+str(i%10))
Traceback (most recent call last):
File "<pyshell#113>", line 2, in <module>
os.makedirs("e:\\x\\"+str((i/1000)%10)+"\\"+str((i/100)%10)+"\\"+str((i/10)%10)+"\\"+str(i%10))
File "C:\Python25\lib\os.py", line 171, in makedirs
mkdir(name, mode)
WindowsError: [Error 1450] : 'e:\\x\\9\\7\\8\\6'
就会出错,难道是操作系统(文件系统)的限制吗 |
|