当前位置: 首页>>代码示例>>Python>>正文


Python MainWindow.get_input_folder方法代码示例

本文整理汇总了Python中main_window.MainWindow.get_input_folder方法的典型用法代码示例。如果您正苦于以下问题:Python MainWindow.get_input_folder方法的具体用法?Python MainWindow.get_input_folder怎么用?Python MainWindow.get_input_folder使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在main_window.MainWindow的用法示例。


在下文中一共展示了MainWindow.get_input_folder方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from main_window import MainWindow [as 别名]
# 或者: from main_window.MainWindow import get_input_folder [as 别名]
class MainPresenter:

    def __init__( self ):
        self.window = MainWindow( self )
        
        path_input = os.path.dirname(__file__) + "\\relatorios_rpt"
        path_output = os.path.dirname(__file__) + "\\saida_excel"
        
        if os.path.isdir(path_input):
            self.window.set_input_folder(path_input)
            
        if os.path.isdir(path_output):
            self.window.set_output_folder(path_output)
        
    def ok_clicked( self ):
        reports_folder = self.window.get_input_folder()
        output_folder = self.window.get_output_folder()

        for file in os.listdir(reports_folder):
            if file.endswith(".RPT"):
                ReportProcessor().process_report( output_folder, reports_folder, file )

        self.window.show_message( "Processo concluído." )
开发者ID:gstiebler,项目名称:ptw_report_processor,代码行数:25,代码来源:main_presenter.py


注:本文中的main_window.MainWindow.get_input_folder方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。