当前位置:   article > 正文

探索文件与交互:使用PyQt5构建一个高级文件选择器_pyqt5 qdesktopservices

pyqt5 qdesktopservices

在当今的应用程序开发中,文件管理和交互是一个重要的组成部分。特别是对于桌面应用程序,提供一个直观、功能丰富的文件选择器是提高用户体验的关键。

本篇博客,我将介绍如何使用Python和PyQt5来构建一个高级的文件选择器,它不仅能浏览文件,还能预览图片,编辑文本文件,并提供基本的右键菜单操作。

关键功能

  • 文件浏览:使用QColumnViewQFileSystemModel展示文件系统。
  • 图片预览:选中图片文件时,能在界面中预览。
  • 文本编辑:选中文本文件时,能在界面中进行编辑。
  • 保存编辑内容:编辑文本文件后,提供保存功能。
  • 右键菜单:提供自定义的右键菜单,实现文件的打开和查看所在文件夹。

设计思路

使用PyQt5的强大功能,我们可以轻松创建出复杂的用户界面。首先,我们使用QColumnView来展示文件系统的层级结构,它能提供直观的列式浏览体验。接着,通过QFileSystemModel来管理和展示文件系统中的数据。

图片预览和文本编辑功能是通过判断文件类型来实现的。如果选中的是图片文件(如jpg、png等),程序会在一个QLabel中显示该图片。如果选中的是文本文件(如txt、py等),则可以在QTextEdit中编辑,并通过一个保存按钮将更改保存回文件。

右键菜单是通过setContextMenuPolicycustomContextMenuRequested信号实现的。当用户在文件上点击右键时,会弹出一个自定义菜单,提供打开文件或文件所在文件夹的选项。

代码实现

以下是完整的代码实现: 

  1. import sys
  2. import os
  3. from PyQt5.QtWidgets import QApplication, QMainWindow, QColumnView, QFileSystemModel, QLabel, QTextEdit, QPushButton, \
  4. QVBoxLayout,QHBoxLayout, QWidget, QMenu
  5. from PyQt5.QtGui import QPixmap, QDesktopServices
  6. from PyQt5.QtCore import QDir, QFileInfo, QUrl, Qt
  7. from PyQt5.Qt import QSplitter
  8. class FileExplorer(QMainWindow):
  9. def __init__(self):
  10. super().__init__()
  11. self.setWindowTitle("文件选择器")
  12. self.setGeometry(100, 100, 1000, 600)
  13. self.model = QFileSystemModel()
  14. self.model.setRootPath(QDir.rootPath())
  15. self.columnView = QColumnView()
  16. self.columnView.setModel(self.model)
  17. self.columnView.clicked.connect(self.on_file_selected)
  18. self.columnView.setContextMenuPolicy(Qt.CustomContextMenu)
  19. self.columnView.customContextMenuRequested.connect(self.open_context_menu)
  20. self.imageLabel = QLabel("图片预览")
  21. self.imageLabel.setScaledContents(True)
  22. self.textEdit = QTextEdit()
  23. self.saveButton = QPushButton("保存")
  24. self.saveButton.clicked.connect(self.save_file)
  25. rightLayout = QVBoxLayout()
  26. rightLayout.addWidget(self.imageLabel)
  27. rightLayout.addWidget(self.textEdit)
  28. rightLayout.addWidget(self.saveButton)
  29. self.rightWidget = QWidget()
  30. self.rightWidget.setLayout(rightLayout)
  31. splitter = QSplitter(Qt.Vertical)
  32. splitter.addWidget(self.columnView)
  33. splitter.addWidget(self.rightWidget)
  34. splitter.setStretchFactor(1, 1)
  35. centralWidget = QWidget()
  36. centralWidget.setLayout(QVBoxLayout())
  37. centralWidget.layout().addWidget(splitter)
  38. self.setCentralWidget(centralWidget)
  39. def on_file_selected(self, index):
  40. path = self.model.filePath(index)
  41. fileInfo = QFileInfo(path)
  42. if fileInfo.isFile():
  43. if fileInfo.suffix().lower() in ['png', 'jpg', 'jpeg', 'bmp', 'gif']:
  44. self.show_image_preview(path)
  45. elif fileInfo.suffix().lower() in ['txt', 'py', 'html', 'css', 'js', 'cs']:
  46. self.show_text_editor(path)
  47. else:
  48. self.clear_previews()
  49. def show_image_preview(self, path):
  50. self.textEdit.hide()
  51. self.saveButton.hide()
  52. self.imageLabel.setPixmap(QPixmap(path))
  53. self.imageLabel.show()
  54. def show_text_editor(self, path):
  55. self.imageLabel.hide()
  56. self.textEdit.setPlainText("")
  57. self.textEdit.show()
  58. self.saveButton.show()
  59. with open(path, 'r', encoding="utf-8") as file:
  60. self.textEdit.setText(file.read())
  61. self.currentTextFilePath = path
  62. def save_file(self):
  63. with open(self.currentTextFilePath, 'w', encoding='utf-8') as file:
  64. file.write(self.textEdit.toPlainText())
  65. def clear_previews(self):
  66. self.imageLabel.clear()
  67. self.textEdit.clear()
  68. self.imageLabel.hide()
  69. self.textEdit.hide()
  70. self.saveButton.hide()
  71. def open_context_menu(self, position):
  72. index = self.columnView.indexAt(position)
  73. if not index.isValid():
  74. return
  75. menu = QMenu()
  76. openAction = menu.addAction("打开")
  77. openFolderAction = menu.addAction("打开所在文件夹")
  78. action = menu.exec_(self.columnView.mapToGlobal(position))
  79. if action == openAction:
  80. self.open_file(index)
  81. elif action == openFolderAction:
  82. self.open_file_folder(index)
  83. def open_file(self, index):
  84. path = self.model.filePath(index)
  85. QDesktopServices.openUrl(QUrl.fromLocalFile(path))
  86. def open_file_folder(self, index):
  87. path = self.model.filePath(index)
  88. QDesktopServices.openUrl(QUrl.fromLocalFile(os.path.dirname(path)))
  89. if __name__ == '__main__':
  90. app = QApplication(sys.argv)
  91. ex = FileExplorer()
  92. ex.show()
  93. sys.exit(app.exec_())

结语

这个文件选择器是一个展示PyQt5框架能力的小示例。通过这个项目,你可以学习到如何处理文件系统数据,实现基本的文件操作界面,以及如何根据不同的文件类型提供不同的功能。PyQt5为桌面应用开发提供了广泛的可能性,你可以在此基础上继续扩展功能,打造更加强大的应用程序。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/154244
推荐阅读
相关标签
  

闽ICP备14008679号