mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-23 20:11:07 +00:00
19 lines
422 B
Python
19 lines
422 B
Python
from PyQt5.QtWidgets import QFileDialog, QApplication
|
|
from PyQt5 import QtWidgets
|
|
|
|
|
|
def select_files(directory_location=None):
|
|
qtapp = QApplication([directory_location])
|
|
qtwgt = QtWidgets.QWidget()
|
|
filenames, _ = QFileDialog.getOpenFileNames(qtwgt)
|
|
return filenames
|
|
|
|
|
|
def main():
|
|
filenames = select_files()
|
|
print("You selected:\n", "\n".join(filename for filename in filenames))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|