mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Implemented POSIX version of IsValidDirectory().
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@636 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
5254528eb9
commit
fa83ed62a0
@ -20,6 +20,9 @@
|
||||
#include <io.h>
|
||||
#include <windows.h>
|
||||
#else
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
@ -73,9 +76,9 @@ CVolumeDirectory::~CVolumeDirectory()
|
||||
|
||||
bool CVolumeDirectory::IsValidDirectory(const std::string& _rDirectory)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
std::string directoryName = ExtractDirectoryName(_rDirectory);
|
||||
|
||||
#ifdef _WIN32
|
||||
WIN32_FIND_DATA ffd;
|
||||
HANDLE hFind = FindFirstFile(directoryName.c_str(), &ffd);
|
||||
|
||||
@ -84,8 +87,11 @@ bool CVolumeDirectory::IsValidDirectory(const std::string& _rDirectory)
|
||||
|
||||
return true;
|
||||
#else
|
||||
// TODO - Insert linux stuff here
|
||||
return false;
|
||||
struct stat info;
|
||||
if (!stat(directoryName.c_str(), &info))
|
||||
return false;
|
||||
|
||||
return S_ISDIR(info.st_mode);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user