Fix HasFile and HasDirectory

This commit is contained in:
Adubbz 2019-07-27 01:08:22 +10:00
parent 1cd8ac2bb2
commit 80d1ec57d1
2 changed files with 10 additions and 5 deletions

View file

@ -127,8 +127,9 @@ namespace sts::ncm {
}
Result ContentStorageInterface::HasPlaceHolder(Out<bool> out, PlaceHolderId placeholder_id) {
if (this->disabled)
if (this->disabled) {
return ResultNcmInvalidContentStorage;
}
char placeholder_path[FS_MAX_PATH] = {0};
this->placeholder_accessor.GetPlaceHolderPath(placeholder_path, placeholder_id);

View file

@ -25,12 +25,14 @@ namespace sts::ncm {
errno = 0;
struct stat st;
*out = false;
if (stat(path, &st) == 0 && S_ISREG(st.st_mode)) {
*out = true;
} else {
*out = false;
}
if (errno != 0) {
/* It is a valid state for the file to not exist. */
if (errno != 0 && errno != ENOENT && errno != ENOTDIR) {
return fsdevGetLastResult();
}
@ -41,12 +43,14 @@ namespace sts::ncm {
errno = 0;
struct stat st;
*out = false;
if (stat(path, &st) == 0 && S_ISDIR(st.st_mode)) {
*out = true;
} else {
*out = false;
}
if (errno != 0) {
/* It is a valid state for the directory to not exist. */
if (errno != 0 && errno != ENOENT && errno != ENOTDIR) {
return fsdevGetLastResult();
}