python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
QT Debugging QFile::remove() Windows 10 MSVS 2019
I am working on a QT application that has to communicate with a few Windows-utilities.
The result of these utilities are a couple of “production-files” that should be listed in a “filenames-txt-file” ...
cvz
Votes: 0
Answers: 3
Is it possible that QFile::size() and QFile::readAll().size() differ for certain special files?
Seeing a weird crash due to read access violation. Here is the minimal code:
struct MyFile : QFile
{
...
string read ()
{
QByteArray content;
if(<something>)
content = QFile:...
iammilind
Votes: 0
Answers: 1
How do I delete a file in Qt when the file is already in the file system?
I have a problem when I try to delete a file with Qt.
If I delete it with my Qt application in the same run as the file is created there is no issues, if I try to delete it when it already exists befo...
Fede
Votes: 0
Answers: 0