1

由于我面临数据丢失,resource.qrc当我尝试恢复它时,我的文件已损坏,并且我的图形文件(.png、.jpg)也丢失了——但我的 Qt 应用程序运行良好。

问题是当我需要编辑.ui文件时,我的文件已损坏resource.qrc。我的resources_rc.py文件很好,我通过以下命令创建:

pyrcc4 -o resource.py resource.qrc

那么有什么办法可以让我resource.qrcresources_rc.py文件中恢复过来吗?

4

1 回答 1

1

下面的脚本将重建一个 qrc 文件和resources_rc.pypyrcc. 它适用于 PyQt4/5 和 Python 2/3。resources_rc.py这些文件将被写入与给定文件相同目录中的临时目录。

用法:

python qrc_gen.py path/to/resources_rc.py

qrc_gen.py

import sys, os, tempfile
import sip
sip.setapi('QString', 2)
from PyQt4 import QtCore
# from PyQt5 import QtCore

respath = os.path.abspath(sys.argv[1])
dirpath = os.path.dirname(respath)
sys.path.insert(0, dirpath)

import resources_rc

tmpdir = tempfile.mkdtemp(prefix='qrc_', dir=dirpath)

it = QtCore.QDirIterator(':', QtCore.QDirIterator.Subdirectories)

files = []

while it.hasNext():
    uri = it.next()
    path = uri.lstrip(':/')
    if path.startswith('qt-project.org'):
        continue
    tmp = os.path.join(tmpdir, path)
    if it.fileInfo().isDir():
        try:
            os.makedirs(tmp)
        except OSError:
            pass
    else:
        res = QtCore.QFile(uri)
        res.open(QtCore.QIODevice.ReadOnly)
        with open(tmp, 'wb') as stream:
            stream.write(bytes(res.readAll()))
        res.close()
        files.append('    <file>%s</file>\n' % path.lstrip(':/'))

with open(os.path.join(tmpdir, 'resources.qrc'), 'w') as stream:
    stream.write('<!DOCTYPE RCC><RCC version="1.0">\n')
    stream.write('<qresource>\n%s</qresource>\n' % ''.join(files))
于 2017-12-31T19:50:09.480 回答