diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-08-10 13:30:00 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-10 13:30:00 -0300 |
commit | 767fb2fa0ba14ee6afb4eeeaad12e5dee944547b (patch) | |
tree | 3987cd371656fd23d039c3f12905bd713e6ee8b8 /drivers/unix/file_access_unix.cpp | |
parent | 275e0d5ee4e80d9d3cd124ffa29a691b9aed3e70 (diff) | |
parent | ea3d997f9d4243c21a9f7a65d0320f31c4d57f54 (diff) |
Merge pull request #20889 from godotengine/revert-18914-master
Revert "added get_creation_time function for gdscript"
Diffstat (limited to 'drivers/unix/file_access_unix.cpp')
-rw-r--r-- | drivers/unix/file_access_unix.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/drivers/unix/file_access_unix.cpp b/drivers/unix/file_access_unix.cpp index 76b2676c71..c25d34125d 100644 --- a/drivers/unix/file_access_unix.cpp +++ b/drivers/unix/file_access_unix.cpp @@ -297,22 +297,6 @@ uint64_t FileAccessUnix::_get_modified_time(const String &p_file) { }; } -// NEW FUNCTION -uint64_t FileAccessUnix::_get_creation_time(const String &p_file) { - - String file = fix_path(p_file); - struct stat flags; - int err = stat(file.utf8().get_data(), &flags); - - if (!err) { - return flags.st_ctime; - } else { - print_line("ERROR IN: " + p_file); - - ERR_FAIL_V(0); - }; -} - Error FileAccessUnix::_chmod(const String &p_path, int p_mod) { int err = chmod(p_path.utf8().get_data(), p_mod); if (!err) { |