• <small id='zY0OT'></small><noframes id='zY0OT'>

      <bdo id='zY0OT'></bdo><ul id='zY0OT'></ul>
      <tfoot id='zY0OT'></tfoot>

        <legend id='zY0OT'><style id='zY0OT'><dir id='zY0OT'><q id='zY0OT'></q></dir></style></legend>

        <i id='zY0OT'><tr id='zY0OT'><dt id='zY0OT'><q id='zY0OT'><span id='zY0OT'><b id='zY0OT'><form id='zY0OT'><ins id='zY0OT'></ins><ul id='zY0OT'></ul><sub id='zY0OT'></sub></form><legend id='zY0OT'></legend><bdo id='zY0OT'><pre id='zY0OT'><center id='zY0OT'></center></pre></bdo></b><th id='zY0OT'></th></span></q></dt></tr></i><div id='zY0OT'><tfoot id='zY0OT'></tfoot><dl id='zY0OT'><fieldset id='zY0OT'></fieldset></dl></div>
      1. Python FileDialog获取文件夹路径不是文件

        时间:2023-08-04
        <legend id='DHT7G'><style id='DHT7G'><dir id='DHT7G'><q id='DHT7G'></q></dir></style></legend>
        • <small id='DHT7G'></small><noframes id='DHT7G'>

            1. <tfoot id='DHT7G'></tfoot>

                <tbody id='DHT7G'></tbody>
                <bdo id='DHT7G'></bdo><ul id='DHT7G'></ul>
              • <i id='DHT7G'><tr id='DHT7G'><dt id='DHT7G'><q id='DHT7G'><span id='DHT7G'><b id='DHT7G'><form id='DHT7G'><ins id='DHT7G'></ins><ul id='DHT7G'></ul><sub id='DHT7G'></sub></form><legend id='DHT7G'></legend><bdo id='DHT7G'><pre id='DHT7G'><center id='DHT7G'></center></pre></bdo></b><th id='DHT7G'></th></span></q></dt></tr></i><div id='DHT7G'><tfoot id='DHT7G'></tfoot><dl id='DHT7G'><fieldset id='DHT7G'></fieldset></dl></div>

                • 本文介绍了Python FileDialog获取文件夹路径不是文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在使用 Python 3.6.我也使用 PyQt.我使用 Qt Designer 开发表单.但我需要一个代码来打开一个文件对话框,允许用户导航到所需的文件夹(不是文件),然后单击并打印/获取文件夹路径.我找不到如何做到这一点.我在这里感谢任何人的帮助.谢谢.

                  I am using Python 3.6. I also use PyQt. I use Qt Designer to develop a form. But I need a code to open a filedialog box, allow the user to navigate to the desired FOLDER (not file) and then click and print/get the folderpath. I cannot find how to do this. I appreciate anyone's help here. Thanks.

                  推荐答案

                  您可以通过应用必要的过滤器来使用 QFileDialoggetExistingDirectory() 方法:

                  You can use the getExistingDirectory() method of QFileDialog by applying the necessary filters:

                  import sys
                  
                  from PyQt5 import QtWidgets, QtCore
                  
                  app = QtWidgets.QApplication(sys.argv)
                  
                  directory = QtWidgets.QFileDialog.getExistingDirectory(None, 
                      "Select Directory",
                      QtCore.QDir.currentPath())
                  
                  print(directory)
                  

                  这篇关于Python FileDialog获取文件夹路径不是文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:QHBoxLayout 以不同的顺序添加小部件 下一篇:QGraphicsSVGItem 忽略(一些)剪切路径.为什么?

                  相关文章

                  最新文章

                • <legend id='MVnSY'><style id='MVnSY'><dir id='MVnSY'><q id='MVnSY'></q></dir></style></legend>
                  • <bdo id='MVnSY'></bdo><ul id='MVnSY'></ul>

                  <i id='MVnSY'><tr id='MVnSY'><dt id='MVnSY'><q id='MVnSY'><span id='MVnSY'><b id='MVnSY'><form id='MVnSY'><ins id='MVnSY'></ins><ul id='MVnSY'></ul><sub id='MVnSY'></sub></form><legend id='MVnSY'></legend><bdo id='MVnSY'><pre id='MVnSY'><center id='MVnSY'></center></pre></bdo></b><th id='MVnSY'></th></span></q></dt></tr></i><div id='MVnSY'><tfoot id='MVnSY'></tfoot><dl id='MVnSY'><fieldset id='MVnSY'></fieldset></dl></div>
                  <tfoot id='MVnSY'></tfoot>

                      <small id='MVnSY'></small><noframes id='MVnSY'>