Change the method of how the filepath are generated
To avoid having to update file or directory paths in 3 script locations (PHP Common, Shell Common and Python File path resolver) The .json file will references by all 3 systems, allowing them to generate paths from one central location. Files can be then moved around, the file updated and all 3 languages will up to date without any other work.
This commit is contained in:
@@ -0,0 +1,280 @@
|
||||
{
|
||||
"directories": {
|
||||
"home": {
|
||||
"description": "The home path for the user with User ID of 1000, this is normally the 'pi' user",
|
||||
"read_setting": null,
|
||||
"return_var": "home"
|
||||
},
|
||||
"birdnet-pi": {
|
||||
"alias_for": "birdnet_pi"
|
||||
},
|
||||
"birdnet_pi": {
|
||||
"description": "The root directory of the BirdNET-pi install",
|
||||
"lives_under": "home",
|
||||
"read_setting": "",
|
||||
"replace_setting_text": "",
|
||||
"replace_setting_text_with": "",
|
||||
"append": "\/BirdNET-Pi",
|
||||
"return_var": ""
|
||||
},
|
||||
"recs_dir": {
|
||||
"alias_for": "recordings_dir"
|
||||
},
|
||||
"recordings_dir": {
|
||||
"description": "The recording directory as specified in the config file (default: BirdSongs)",
|
||||
"lives_under": "home",
|
||||
"read_setting": "RECS_DIR",
|
||||
"replace_setting_text": "$HOME",
|
||||
"replace_setting_text_with": "",
|
||||
"append": ""
|
||||
},
|
||||
"processed": {
|
||||
"description": "The directory which holds the recordings that have been processed",
|
||||
"lives_under": "recordings_dir",
|
||||
"read_setting": "PROCESSED",
|
||||
"replace_setting_text": "${RECS_DIR}",
|
||||
"replace_setting_text_with": "",
|
||||
"append": ""
|
||||
},
|
||||
"extracted": {
|
||||
"description": "The directory which holds the extraction related data from detections",
|
||||
"lives_under": "recordings_dir",
|
||||
"read_setting": "EXTRACTED",
|
||||
"replace_setting_text": "${RECS_DIR}",
|
||||
"replace_setting_text_with": "",
|
||||
"append": ""
|
||||
},
|
||||
"extracted_bydate": {
|
||||
"alias_for": "extracted_by_date"
|
||||
},
|
||||
"extracted_by_date": {
|
||||
"description": "The directory which holds the the extractions from detections as folders by date",
|
||||
"lives_under": "extracted",
|
||||
"read_setting": "",
|
||||
"replace_setting_text": "",
|
||||
"replace_setting_text_with": "",
|
||||
"append": "\/By_Date"
|
||||
},
|
||||
"extracted_charts": {
|
||||
"description": "The directory which holds the spectrogram charts for detections",
|
||||
"lives_under": "extracted",
|
||||
"read_setting": "",
|
||||
"replace_setting_text": "",
|
||||
"replace_setting_text_with": "",
|
||||
"append": "\/Charts"
|
||||
},
|
||||
"shifted_dir": {
|
||||
"alias_for": "shifted_audio"
|
||||
},
|
||||
"shifted_audio": {
|
||||
"description": "The directory which stores any frequency shifted audio",
|
||||
"lives_under": "extracted_by_date",
|
||||
"read_setting": "",
|
||||
"replace_setting_text": "",
|
||||
"replace_setting_text_with": "",
|
||||
"append": "\/shifted"
|
||||
},
|
||||
"database": {
|
||||
"description": "**NOT CURRENTLY USED** The directory which holds files related to the detections database",
|
||||
"lives_under": "birdnet_pi",
|
||||
"read_setting": "",
|
||||
"replace_setting_text": "",
|
||||
"replace_setting_text_with": "",
|
||||
"append": "\/database"
|
||||
},
|
||||
"config": {
|
||||
"description": "The directory which holds configuration files for BirdNET-pi",
|
||||
"lives_under": "birdnet_pi",
|
||||
"read_setting": "",
|
||||
"replace_setting_text": "",
|
||||
"replace_setting_text_with": "",
|
||||
"append": "\/config"
|
||||
},
|
||||
"models": {
|
||||
"alias_for": "model"
|
||||
},
|
||||
"model": {
|
||||
"description": "The directory which holds AI detection models",
|
||||
"lives_under": "birdnet_pi",
|
||||
"read_setting": "",
|
||||
"replace_setting_text": "",
|
||||
"replace_setting_text_with": "",
|
||||
"append": "\/model"
|
||||
},
|
||||
"python3_ve": {
|
||||
"description": "The directory which contains the Python 3 Virtual Environment",
|
||||
"lives_under": "birdnet_pi",
|
||||
"read_setting": "",
|
||||
"replace_setting_text": "",
|
||||
"replace_setting_text_with": "",
|
||||
"append": "\/birdnet\/bin"
|
||||
},
|
||||
"scripts": {
|
||||
"description": "The directory which contains the script files like PHP and Shell scripts",
|
||||
"lives_under": "birdnet_pi",
|
||||
"read_setting": "",
|
||||
"replace_setting_text": "",
|
||||
"replace_setting_text_with": "",
|
||||
"append": "\/scripts"
|
||||
},
|
||||
"stream_data": {
|
||||
"description": "The directory which contains the recordings from RTSP streams",
|
||||
"lives_under": "recordings_dir",
|
||||
"read_setting": "",
|
||||
"replace_setting_text": "",
|
||||
"replace_setting_text_with": "",
|
||||
"append": "\/StreamData"
|
||||
},
|
||||
"templates": {
|
||||
"description": "The directory which contains the templates, like html, CRON script templates",
|
||||
"lives_under": "birdnet_pi",
|
||||
"read_setting": "",
|
||||
"replace_setting_text": "",
|
||||
"replace_setting_text_with": "",
|
||||
"append": "\/templates"
|
||||
},
|
||||
"www": {
|
||||
"alias_for": "web"
|
||||
},
|
||||
"web": {
|
||||
"description": "The directory which any files related to generating the Web UI, index.php, views.php, stylesheets etc",
|
||||
"lives_under": "birdnet_pi",
|
||||
"read_setting": "",
|
||||
"replace_setting_text": "",
|
||||
"replace_setting_text_with": "",
|
||||
"append": "\/homepage"
|
||||
},
|
||||
"www_fonts": {
|
||||
"alias_for": "web_fonts"
|
||||
},
|
||||
"web_fonts": {
|
||||
"description": "The directory which any fonts used by the WebUI or Python scripts",
|
||||
"lives_under": "www",
|
||||
"read_setting": "",
|
||||
"replace_setting_text": "",
|
||||
"replace_setting_text_with": "",
|
||||
"append": "\/static"
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"analyzing_now.txt": {
|
||||
"lives_under": "birdnet_pi",
|
||||
"append": "\/analyzing_now.txt"
|
||||
},
|
||||
"apprise.txt": {
|
||||
"lives_under": "birdnet_pi",
|
||||
"append": "\/apprise.txt"
|
||||
},
|
||||
"birdnet.conf": {
|
||||
"lives_under": "birdnet_pi",
|
||||
"append": "\/birdnet.conf"
|
||||
},
|
||||
"etc_birdnet.conf": {
|
||||
"lives_under": "",
|
||||
"append": "",
|
||||
"return_var": "\/etc\/birdnet\/birdnet.conf"
|
||||
},
|
||||
"BirdDB.txt": {
|
||||
"lives_under": "birdnet_pi",
|
||||
"append": "\/BirdDB.txt"
|
||||
},
|
||||
"birds.db": {
|
||||
"lives_under": "scripts",
|
||||
"append": "\/birds.db"
|
||||
},
|
||||
"blacklisted_images.txt": {
|
||||
"lives_under": "scripts",
|
||||
"append": "\/blacklisted_images.txt"
|
||||
},
|
||||
"disk_check_exclude.txt": {
|
||||
"lives_under": "scripts",
|
||||
"append": "\/disk_check_exclude.txt"
|
||||
},
|
||||
"email_template": {
|
||||
"lives_under": "scripts",
|
||||
"append": "\/email_template"
|
||||
},
|
||||
"email_template2": {
|
||||
"lives_under": "scripts",
|
||||
"append": "\/email_template2"
|
||||
},
|
||||
"exclude_species_list.txt": {
|
||||
"lives_under": "scripts",
|
||||
"append": "\/exclude_species_list.txt"
|
||||
},
|
||||
"filepath_map.json": {
|
||||
"lives_under": "config",
|
||||
"append": "\/filepath_map.json"
|
||||
},
|
||||
"firstrun.ini": {
|
||||
"lives_under": "birdnet_pi",
|
||||
"append": "\/firstrun.ini"
|
||||
},
|
||||
".gotty": {
|
||||
"lives_under": "home",
|
||||
"append": "\/.gotty"
|
||||
},
|
||||
"HUMAN.txt": {
|
||||
"lives_under": "birdnet_pi",
|
||||
"append": "\/HUMAN.txt"
|
||||
},
|
||||
"IDFILE": {
|
||||
"alias_for": "IdentifiedSoFar.txt"
|
||||
},
|
||||
"IdentifiedSoFar.txt": {
|
||||
"lives_under": "home",
|
||||
"read_setting": "IDFILE",
|
||||
"replace_setting_text": "$HOME",
|
||||
"replace_setting_text_with": "",
|
||||
"append": ""
|
||||
},
|
||||
"include_species_list.txt": {
|
||||
"lives_under": "scripts",
|
||||
"append": "\/include_species_list.txt"
|
||||
},
|
||||
"labels.txt": {
|
||||
"lives_under": "model",
|
||||
"append": "\/labels.txt"
|
||||
},
|
||||
"labels.txt.old": {
|
||||
"lives_under": "model",
|
||||
"append": "\/labels.txt.old"
|
||||
},
|
||||
"labels_flickr.txt": {
|
||||
"lives_under": "model",
|
||||
"append": "\/labels_flickr.txt"
|
||||
},
|
||||
"labels_lang.txt": {
|
||||
"lives_under": "model",
|
||||
"append": "\/labels_lang.txt"
|
||||
},
|
||||
"labels_l18n.zip": {
|
||||
"lives_under": "model",
|
||||
"append": "\/labels_l18n.zip"
|
||||
},
|
||||
"labels_nm.zip": {
|
||||
"lives_under": "model",
|
||||
"append": "\/labels_nm.zip"
|
||||
},
|
||||
"lastrun.txt": {
|
||||
"lives_under": "scripts",
|
||||
"append": "\/lastrun.txt"
|
||||
},
|
||||
"python3": {
|
||||
"lives_under": "python3_ve",
|
||||
"append": "\/python3 "
|
||||
},
|
||||
"python3_appraise": {
|
||||
"lives_under": "python3_ve",
|
||||
"append": "\/apprise "
|
||||
},
|
||||
"species.py": {
|
||||
"lives_under": "scripts",
|
||||
"append": "\/species.py"
|
||||
},
|
||||
"thisrun.txt": {
|
||||
"lives_under": "scripts",
|
||||
"append": "\/thisrun.txt"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,327 @@
|
||||
<?php
|
||||
/**
|
||||
* Script to allow easy manipulation and generation of ../config/filepath_map.json
|
||||
* Execute this script with php -a ./generate_filepath_map_file.php
|
||||
*/
|
||||
|
||||
############################
|
||||
# FILE PATH DECLARATIONS
|
||||
############################
|
||||
$file_path_map_array['directories']['home'] = array(
|
||||
'description' => "The home path for the user with User ID of 1000, this is normally the 'pi' user",
|
||||
'read_setting' => null,
|
||||
'return_var' => 'home'
|
||||
);
|
||||
|
||||
|
||||
$file_path_map_array['directories']['birdnet-pi'] = array('alias_for' => 'birdnet_pi');
|
||||
$file_path_map_array['directories']['birdnet_pi'] = array(
|
||||
'description' => "The root directory of the BirdNET-pi install",
|
||||
'lives_under' => 'home',
|
||||
'read_setting' => '',
|
||||
'replace_setting_text' => '',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '/BirdNET-Pi',
|
||||
'return_var' => ''
|
||||
);
|
||||
|
||||
|
||||
$file_path_map_array['directories']['recs_dir'] = array('alias_for' => 'recordings_dir');
|
||||
$file_path_map_array['directories']['recordings_dir'] = array(
|
||||
'description' => "The recording directory as specified in the config file (default: BirdSongs)",
|
||||
'lives_under' => 'home',
|
||||
'read_setting' => 'RECS_DIR',
|
||||
'replace_setting_text' => '$HOME',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '',
|
||||
);
|
||||
|
||||
|
||||
$file_path_map_array['directories']['processed'] = array(
|
||||
'description' => "The directory which holds the recordings that have been processed",
|
||||
'lives_under' => 'recordings_dir',
|
||||
'read_setting' => 'PROCESSED',
|
||||
'replace_setting_text' => '${RECS_DIR}',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '',
|
||||
);
|
||||
|
||||
|
||||
$file_path_map_array['directories']['extracted'] = array(
|
||||
'description' => "The directory which holds the extraction related data from detections",
|
||||
'lives_under' => 'recordings_dir',
|
||||
'read_setting' => 'EXTRACTED',
|
||||
'replace_setting_text' => '${RECS_DIR}',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '',
|
||||
);
|
||||
|
||||
|
||||
$file_path_map_array['directories']['extracted_bydate'] = array('alias_for' => 'extracted_by_date');
|
||||
$file_path_map_array['directories']['extracted_by_date'] = array(
|
||||
'description' => "The directory which holds the the extractions from detections as folders by date",
|
||||
'lives_under' => 'extracted',
|
||||
'read_setting' => '',
|
||||
'replace_setting_text' => '',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '/By_Date',
|
||||
);
|
||||
|
||||
|
||||
$file_path_map_array['directories']['extracted_charts'] = array(
|
||||
'description' => "The directory which holds the spectrogram charts for detections",
|
||||
'lives_under' => 'extracted',
|
||||
'read_setting' => '',
|
||||
'replace_setting_text' => '',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '/Charts',
|
||||
);
|
||||
|
||||
$file_path_map_array['directories']['shifted_dir'] = array('alias_for' => 'shifted_audio');
|
||||
$file_path_map_array['directories']['shifted_audio'] = array(
|
||||
'description' => "The directory which stores any frequency shifted audio",
|
||||
'lives_under' => 'extracted_by_date',
|
||||
'read_setting' => '',
|
||||
'replace_setting_text' => '',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '/shifted',
|
||||
);
|
||||
|
||||
|
||||
$file_path_map_array['directories']['database'] = array(
|
||||
'description' => "**NOT CURRENTLY USED** The directory which holds files related to the detections database",
|
||||
'lives_under' => 'birdnet_pi',
|
||||
'read_setting' => '',
|
||||
'replace_setting_text' => '',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '/database',
|
||||
);
|
||||
|
||||
$file_path_map_array['directories']['config'] = array(
|
||||
'description' => "The directory which holds configuration files for BirdNET-pi",
|
||||
'lives_under' => 'birdnet_pi',
|
||||
'read_setting' => '',
|
||||
'replace_setting_text' => '',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '/config',
|
||||
);
|
||||
|
||||
$file_path_map_array['directories']['models'] = array('alias_for' => 'model');
|
||||
$file_path_map_array['directories']['model'] = array(
|
||||
'description' => "The directory which holds AI detection models",
|
||||
'lives_under' => 'birdnet_pi',
|
||||
'read_setting' => '',
|
||||
'replace_setting_text' => '',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '/model',
|
||||
);
|
||||
|
||||
$file_path_map_array['directories']['python3_ve'] = array(
|
||||
'description' => "The directory which contains the Python 3 Virtual Environment",
|
||||
'lives_under' => 'birdnet_pi',
|
||||
'read_setting' => '',
|
||||
'replace_setting_text' => '',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '/birdnet/bin',
|
||||
);
|
||||
|
||||
$file_path_map_array['directories']['scripts'] = array(
|
||||
'description' => "The directory which contains the script files like PHP and Shell scripts",
|
||||
'lives_under' => 'birdnet_pi',
|
||||
'read_setting' => '',
|
||||
'replace_setting_text' => '',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '/scripts',
|
||||
);
|
||||
|
||||
$file_path_map_array['directories']['stream_data'] = array(
|
||||
'description' => "The directory which contains the recordings from RTSP streams",
|
||||
'lives_under' => 'recordings_dir',
|
||||
'read_setting' => '',
|
||||
'replace_setting_text' => '',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '/StreamData',
|
||||
);
|
||||
|
||||
$file_path_map_array['directories']['templates'] = array(
|
||||
'description' => "The directory which contains the templates, like html, CRON script templates",
|
||||
'lives_under' => 'birdnet_pi',
|
||||
'read_setting' => '',
|
||||
'replace_setting_text' => '',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '/templates',
|
||||
);
|
||||
|
||||
$file_path_map_array['directories']['www'] = array('alias_for' => 'web');
|
||||
$file_path_map_array['directories']['web'] = array(
|
||||
'description' => "The directory which any files related to generating the Web UI, index.php, views.php, stylesheets etc",
|
||||
'lives_under' => 'birdnet_pi',
|
||||
'read_setting' => '',
|
||||
'replace_setting_text' => '',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '/homepage',
|
||||
);
|
||||
|
||||
$file_path_map_array['directories']['www_fonts'] = array('alias_for' => 'web_fonts');
|
||||
$file_path_map_array['directories']['web_fonts'] = array(
|
||||
'description' => "The directory which any fonts used by the WebUI or Python scripts",
|
||||
'lives_under' => 'www',
|
||||
'read_setting' => '',
|
||||
'replace_setting_text' => '',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '/static',
|
||||
);
|
||||
|
||||
|
||||
############################
|
||||
# FILE PATH DECLARATIONS
|
||||
############################
|
||||
$file_path_map_array['files']['analyzing_now.txt'] = array(
|
||||
'lives_under' => 'birdnet_pi',
|
||||
'append' => '/analyzing_now.txt'
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['apprise.txt'] = array(
|
||||
'lives_under' => 'birdnet_pi',
|
||||
'append' => '/apprise.txt'
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['birdnet.conf'] = array(
|
||||
'lives_under' => 'birdnet_pi',
|
||||
'append' => '/birdnet.conf'
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['etc_birdnet.conf'] = array(
|
||||
'lives_under' => '',
|
||||
'append' => '',
|
||||
'return_var' => '/etc/birdnet/birdnet.conf'
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['BirdDB.txt'] = array(
|
||||
'lives_under' => 'birdnet_pi',
|
||||
'append' => '/BirdDB.txt',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['birds.db'] = array(
|
||||
'lives_under' => 'scripts',
|
||||
'append' => '/birds.db',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['blacklisted_images.txt'] = array(
|
||||
'lives_under' => 'scripts',
|
||||
'append' => '/blacklisted_images.txt',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['disk_check_exclude.txt'] = array(
|
||||
'lives_under' => 'scripts',
|
||||
'append' => '/disk_check_exclude.txt',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['email_template'] = array(
|
||||
'lives_under' => 'scripts',
|
||||
'append' => '/email_template',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['email_template2'] = array(
|
||||
'lives_under' => 'scripts',
|
||||
'append' => '/email_template2',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['exclude_species_list.txt'] = array(
|
||||
'lives_under' => 'scripts',
|
||||
'append' => '/exclude_species_list.txt',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['filepath_map.json'] = array(
|
||||
'lives_under' => 'config',
|
||||
'append' => '/filepath_map.json',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['firstrun.ini'] = array(
|
||||
'lives_under' => 'birdnet_pi',
|
||||
'append' => '/firstrun.ini',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['.gotty'] = array(
|
||||
'lives_under' => 'home',
|
||||
'append' => '/.gotty',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['HUMAN.txt'] = array(
|
||||
'lives_under' => 'birdnet_pi',
|
||||
'append' => '/HUMAN.txt',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['IDFILE'] = array('alias_for' => 'IdentifiedSoFar.txt');
|
||||
$file_path_map_array['files']['IdentifiedSoFar.txt'] = array(
|
||||
'lives_under' => 'home',
|
||||
'read_setting' => 'IDFILE',
|
||||
'replace_setting_text' => '$HOME',
|
||||
'replace_setting_text_with' => '',
|
||||
'append' => '',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['include_species_list.txt'] = array(
|
||||
'lives_under' => 'scripts',
|
||||
'append' => '/include_species_list.txt',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['labels.txt'] = array(
|
||||
'lives_under' => 'model',
|
||||
'append' => '/labels.txt',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['labels.txt.old'] = array(
|
||||
'lives_under' => 'model',
|
||||
'append' => '/labels.txt.old',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['labels_flickr.txt'] = array(
|
||||
'lives_under' => 'model',
|
||||
'append' => '/labels_flickr.txt',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['labels_lang.txt'] = array(
|
||||
'lives_under' => 'model',
|
||||
'append' => '/labels_lang.txt',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['labels_l18n.zip'] = array(
|
||||
'lives_under' => 'model',
|
||||
'append' => '/labels_l18n.zip',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['labels_nm.zip'] = array(
|
||||
'lives_under' => 'model',
|
||||
'append' => '/labels_nm.zip',
|
||||
);
|
||||
|
||||
|
||||
$file_path_map_array['files']['lastrun.txt'] = array(
|
||||
'lives_under' => 'scripts',
|
||||
'append' => '/lastrun.txt',
|
||||
);
|
||||
|
||||
|
||||
$file_path_map_array['files']['python3'] = array(
|
||||
'lives_under' => 'python3_ve',
|
||||
'append' => '/python3 ',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['python3_appraise'] = array(
|
||||
'lives_under' => 'python3_ve',
|
||||
'append' => '/apprise ',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['species.py'] = array(
|
||||
'lives_under' => 'scripts',
|
||||
'append' => '/species.py',
|
||||
);
|
||||
|
||||
$file_path_map_array['files']['thisrun.txt'] = array(
|
||||
'lives_under' => 'scripts',
|
||||
'append' => '/thisrun.txt',
|
||||
);
|
||||
|
||||
//Output array as JSON and pretty print it
|
||||
file_put_contents('./filepath_map.json', json_encode($file_path_map_array, JSON_PRETTY_PRINT));
|
||||
Reference in New Issue
Block a user