This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Empty folder deleter: A simple script that deletes all of those annoing empty folders on your backups | |
| import os | |
| from pathlib import Path | |
| import argparse | |
| def delete_empty_folders(path): | |
| no_empty_dirs = True | |
| for root, dirs, files in os.walk(str(path), topdown=False): | |
| if os.listdir(root) == []: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #if defined _ui_common_included | |
| #endinput | |
| #endif | |
| #define _ui_common_included | |
| typedef ActOnTarget = function void (int i_admin, int i_target, any a_data); | |
| stock int Simplified_ProcessTargets(int i_admin, char[] s_target, ActOnTarget f_action, char[] s_format, char[] s_ml_phrase, char[] s_phrase, a_data, int i_flags = 0) | |
| { | |
| char s_target_name[MAX_TARGET_LENGTH]; |
NewerOlder