Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何将嵌入到 app qrc 中的文件复制到 fs 中?像这样的东西
QFile::copy("qrc:/assets/files/my.file" , "C:/my.file");
似乎不起作用。为什么以及如何实现?
您不需要qrc, 资源以:
qrc
:
例如QFile myFile(":/data/data.xml");
QFile myFile(":/data/data.xml");
PS:我不确定 QFile 如何处理资源文件名的大小写敏感性。为了获得最佳可移植性,您可能希望确保案例与qrc文件中的任何内容相匹配。