[*] autism
This commit is contained in:
parent
5e94be7487
commit
a79caa707f
@ -32,6 +32,12 @@ namespace Aurora::IO::FS
|
||||
FILETIME modified;
|
||||
FILETIME access;
|
||||
|
||||
if (path.empty())
|
||||
{
|
||||
SysPushErrorArg("Empty path provided");
|
||||
return false;
|
||||
}
|
||||
|
||||
auto pathex = NormalizePathRet(path);
|
||||
if (pathex.empty())
|
||||
{
|
||||
@ -56,11 +62,11 @@ namespace Aurora::IO::FS
|
||||
{
|
||||
if (!AuFS::FileExists(pathex))
|
||||
{
|
||||
SysPushErrorIO("Missing file: {}", path);
|
||||
SysPushErrorResourceMissing("Missing file: {}", path);
|
||||
return false;
|
||||
}
|
||||
|
||||
SysPushErrorIO("Couoldn't open a handle for: {}", path);
|
||||
SysPushErrorIO("Couldn't open a handle for: {}", path);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -16,6 +16,12 @@ namespace Aurora::IO::FS
|
||||
AuList<AuString> names;
|
||||
WIN32_FIND_STREAM_DATA data;
|
||||
|
||||
if (path.empty())
|
||||
{
|
||||
SysPushErrorArg("Empty path provided");
|
||||
return {};
|
||||
}
|
||||
|
||||
auto pathex = NormalizePathRet(path);
|
||||
if (pathex.empty())
|
||||
{
|
||||
@ -42,11 +48,11 @@ namespace Aurora::IO::FS
|
||||
{
|
||||
if (!AuFS::FileExists(pathex))
|
||||
{
|
||||
SysPushErrorIO("Missing file: {}", path);
|
||||
SysPushErrorResourceMissing("Missing file: {}", path);
|
||||
return {};
|
||||
}
|
||||
|
||||
SysPushErrorIO("Couoldn't open a handle for: {}", path);
|
||||
SysPushErrorIO("Couldn't open a handle for: {}", path);
|
||||
return {};
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user