本文整理汇总了Python中output.Output.now_dir方法的典型用法代码示例。如果您正苦于以下问题:Python Output.now_dir方法的具体用法?Python Output.now_dir怎么用?Python Output.now_dir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类output.Output
的用法示例。
在下文中一共展示了Output.now_dir方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: walk
# 需要导入模块: from output import Output [as 别名]
# 或者: from output.Output import now_dir [as 别名]
def walk(self):
self.co.create()
output = Output(self.kind)
output.now_dir()
print '[+] now path: ' + str(output.nowpath())
output.out_dir()
output.out_file()
print '[+] target path: ' + str(self.__path)
header = "target : " + self.__path + '\n'
print '[+] please wait ...'
output.write(header)
for root, dirs, files in os.walk(self.__path):
level = root.replace(self.__path, '').count(os.sep)
indent = ' ' * 4 * (level)
out = '{0}--=> {1}/'.format(indent, os.path.basename(root)) + '\n'
output.write(out)
subindent = ' ' * 4 * (level + 1)
for f in files:
#c_path = os.path.basename(root) + '/' + f
f_name = f
f_path = os.path.join(root, f)
if self.checking(f_path) == 2:
f_md5 = self.md5(f_path)
self.co.into(self.kind, f_name, f_path, f_md5)
out = '{0}=> {1}'.format(subindent, f) + '\n'
output.write(out)
self.co.close()
output.close()