1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Added relative paths for DirAccess::remove()

Follows similar behaviour to DirAccess::rename()
This commit is contained in:
Zher Huei Lee
2016-03-01 10:40:31 +00:00
parent c0382a1731
commit d7052ddba3
4 changed files with 17 additions and 8 deletions

View File

@@ -310,8 +310,11 @@ Error DirAccessWindows::rename(String p_path,String p_new_path) {
Error DirAccessWindows::remove(String p_path) {
p_path=fix_path(p_path);
if (p_path.is_rel_path())
p_path=get_current_dir().plus_file(p_path);
else
p_path=fix_path(p_path);
printf("erasing %s\n",p_path.utf8().get_data());
//WIN32_FILE_ATTRIBUTE_DATA fileInfo;
//DWORD fileAttr = GetFileAttributesExW(p_path.c_str(), GetFileExInfoStandard, &fileInfo);