Merge pull request #64844 from RandomShaper/fa_access_type
Add `FileAccess::get_access_type()`
This commit is contained in:
@ -115,6 +115,10 @@ FileAccess::CreateFunc FileAccess::get_create_func(AccessType p_access) {
|
|||||||
return create_func[p_access];
|
return create_func[p_access];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
FileAccess::AccessType FileAccess::get_access_type() const {
|
||||||
|
return _access_type;
|
||||||
|
}
|
||||||
|
|
||||||
String FileAccess::fix_path(const String &p_path) const {
|
String FileAccess::fix_path(const String &p_path) const {
|
||||||
//helper used by file accesses that use a single filesystem
|
//helper used by file accesses that use a single filesystem
|
||||||
|
|
||||||
|
|||||||
@ -60,6 +60,7 @@ public:
|
|||||||
virtual Error _set_unix_permissions(const String &p_file, uint32_t p_permissions) = 0;
|
virtual Error _set_unix_permissions(const String &p_file, uint32_t p_permissions) = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
AccessType get_access_type() const;
|
||||||
String fix_path(const String &p_path) const;
|
String fix_path(const String &p_path) const;
|
||||||
virtual Error _open(const String &p_path, int p_mode_flags) = 0; ///< open a file
|
virtual Error _open(const String &p_path, int p_mode_flags) = 0; ///< open a file
|
||||||
virtual uint64_t _get_modified_time(const String &p_file) = 0;
|
virtual uint64_t _get_modified_time(const String &p_file) = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user