dayjournal memo

Total 975 articles!!

Qt #005 - ディレクトリ選択ダイアログを表示

Yasunori Kirimoto's avatar

画像



Qtでディレクトリ選択ダイアログを表示するメモ。



# -*- coding: utf-8 -*-

# QGIS2ではPyQt4.QtGui
from PyQt4.QtGui import *

# QGIS3ではPyQt5.QtGui
from PyQt5.QtGui import *

import os.path

# 実行ディレクトリ取得
rootpath = os.path.abspath(os.path.dirname("__file__"))
# ディレクトリ選択ダイアログを表示
path = QFileDialog.getExistingDirectory(None, "rootpath", rootpath)


画像



book

Q&A