我正在尝试删除我的应用程序在卸载期间创建的所有临时文件。我使用以下代码:
bool DeleteFileNow( QString filenameStr )
{
wchar_t* filename;
filenameStr.toWCharArray(filename);
QFileInfo info(filenameStr);
// don't do anything if the file doesn't exist!
if (!info.exists())
return false;
// determine the path in which to store the temp filename
wchar_t* path;
info.absolutePath().toWCharArray(path);
TRACE( "Generating temporary name" );
// generate a guaranteed to be unique temporary filename to house the pending delete
wchar_t tempname[MAX_PATH];
if (!GetTempFileNameW(path, L".xX", 0, tempname))
return false;
TRACE( "Moving real file name to dummy" );
// move the real file to the dummy filename
if (!MoveFileExW(filename, tempname, MOVEFILE_REPLACE_EXISTING))
{
// clean up the temp file
DeleteFileW(tempname);
return false;
}
TRACE( "Queueing the OS" );
// queue the deletion (the OS will delete it when all handles (ours or other processes) close)
return DeleteFileW(tempname) != FALSE;
}
我的应用程序崩溃了。我认为它是由于一些缺少windows dll进行的操作。有没有其他方法可以单独使用Qt执行相同的操作?
答案 0 :(得分:1)
Roku已经用QString和wchar_t *来操纵你的问题了。 请参阅文档:QString Class Reference, method toWCharArray:
int QString::toWCharArray ( wchar_t * array ) const
使用此QString对象中包含的数据填充数组。该数组在wchar_t为2字节宽的平台(例如windows)上的utf16中编码,在wcs_t为4字节宽的平台上的ucs4中编码(大多数Unix系统)。
数组必须由调用者分配并包含足够的空间来容纳完整的字符串(分配与字符串长度相同的数组总是足够的)。
返回数组中字符串的实际长度。
答案 1 :(得分:0)
如果您只是想找到一种使用Qt删除文件的方法,请使用QFile::remove
:
QFile file(fileNameStr);
file.remove(); // Returns a bool; true if successful
如果您希望Qt为您管理临时文件的整个生命周期,请查看QTemporaryFile
:
QTemporaryFile tempFile(fileName);
if (tempFile.open())
{
// Do stuff with file here
}
// When tempFile falls out of scope, it is automatically deleted.