We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ec0ee3 commit e2add18Copy full SHA for e2add18
+stdlib/is_readable.m
@@ -9,7 +9,7 @@
9
10
a = file_attributes(p);
11
12
-ok = ~isempty(a) && (a.UserRead || v.GroupRead || v.OtherRead);
+ok = ~isempty(a) && (a.UserRead || a.GroupRead || a.OtherRead);
13
14
end
15
+stdlib/is_writable.m
-ok = ~isempty(a) && (a.UserWrite || v.GroupWrite || v.OtherWrite);
+ok = ~isempty(a) && (a.UserWrite || a.GroupWrite || a.OtherWrite);
0 commit comments