shared: FileSaver: Return NOACCESS when no read access
This commit is contained in:
orang tua
e99b2ba091
melakukan
9fd48d4664
@ -100,6 +100,11 @@ SaveFileResult FileSaver::saveFile(const QFileInfo &fileInfo)
|
||||
|
||||
int status = -1;
|
||||
|
||||
if(!fileInfo.isReadable())
|
||||
{
|
||||
return NOACCESS;
|
||||
}
|
||||
|
||||
if(!fileInfo.exists())
|
||||
{
|
||||
return NOTFOUND;
|
||||
|
Memuat…
Reference in New Issue
Block a user