mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
getFileInfo fixed
This commit is contained in:
parent
4d85a49666
commit
a465c1aa0a
@ -11,7 +11,8 @@
|
||||
#include <Windows.h>
|
||||
|
||||
// Maybe in StrFmt?
|
||||
std::wstring ConvertUTF8ToWString(const std::string &source) {
|
||||
std::wstring ConvertUTF8ToWString(const std::string &source)
|
||||
{
|
||||
int len = (int)source.size();
|
||||
int size = (int)MultiByteToWideChar(CP_UTF8, 0, source.c_str(), len, NULL, 0);
|
||||
std::wstring str;
|
||||
@ -37,7 +38,8 @@ std::wstring ConvertUTF8ToWString(const std::string &source) {
|
||||
#define GET_API_ERROR static_cast<u64>(errno)
|
||||
#endif
|
||||
|
||||
bool getFileInfo(const char *path, FileInfo *fileInfo) {
|
||||
bool getFileInfo(const char *path, FileInfo *fileInfo)
|
||||
{
|
||||
// TODO: Expand relative paths?
|
||||
fileInfo->fullName = path;
|
||||
|
||||
@ -46,6 +48,7 @@ bool getFileInfo(const char *path, FileInfo *fileInfo) {
|
||||
if (!GetFileAttributesExW(ConvertUTF8ToWString(path).c_str(), GetFileExInfoStandard, &attrs)) {
|
||||
fileInfo->size = 0;
|
||||
fileInfo->isDirectory = false;
|
||||
fileInfo->isWritable = false;
|
||||
fileInfo->exists = false;
|
||||
return false;
|
||||
}
|
||||
@ -58,7 +61,9 @@ bool getFileInfo(const char *path, FileInfo *fileInfo) {
|
||||
int result = stat64(path, &file_info);
|
||||
|
||||
if (result < 0) {
|
||||
LOG_NOTICE(GENERAL, "IsDirectory: stat failed on %s", path);
|
||||
fileInfo->size = 0;
|
||||
fileInfo->isDirectory = false;
|
||||
fileInfo->isWritable = false;
|
||||
fileInfo->exists = false;
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user