|
| 1 | +from file_automation.local.dir.dir_process import copy_dir, rename_dir, create_dir, remove_dir_tree |
1 | 2 | from file_automation.local.file.file_process import copy_file, remove_file, rename_file, copy_specify_extension_file, \ |
2 | 3 | copy_all_file_to_dir |
3 | | -from file_automation.local.dir.dir_process import copy_dir, rename_dir, create_dir, remove_dir_tree |
4 | 4 | from file_automation.local.zip.zip_process import zip_dir, zip_file, zip_info, zip_file_info, set_zip_password, \ |
5 | 5 | read_zip_file, unzip_file, unzip_all |
6 | | - |
| 6 | +from file_automation.remote.google_drive.delete.delete_manager import drive_delete_file |
| 7 | +from file_automation.remote.google_drive.dir.folder_manager import drive_add_folder |
| 8 | +from file_automation.remote.google_drive.download.download_file import drive_download_file, \ |
| 9 | + drive_download_file_from_folder |
7 | 10 | from file_automation.remote.google_drive.driver_instance import driver_instance |
8 | 11 | from file_automation.remote.google_drive.search.search_drive import \ |
9 | 12 | drive_search_all_file, drive_search_field, drive_search_file_mimetype |
10 | | -from file_automation.remote.google_drive.upload.upload_to_driver import \ |
11 | | - drive_upload_dir_to_folder, drive_upload_to_folder, drive_upload_dir_to_drive, drive_upload_to_drive |
12 | | -from file_automation.remote.google_drive.dir.folder_manager import drive_add_folder |
13 | 13 | from file_automation.remote.google_drive.share.share_file import \ |
14 | 14 | drive_share_file_to_anyone, drive_share_file_to_domain, drive_share_file_to_user |
15 | | -from file_automation.remote.google_drive.delete.delete_manager import drive_delete_file |
16 | | -from file_automation.remote.google_drive.download.download_file import drive_download_file, drive_download_file_from_folder |
| 15 | +from file_automation.remote.google_drive.upload.upload_to_driver import \ |
| 16 | + drive_upload_dir_to_folder, drive_upload_to_folder, drive_upload_dir_to_drive, drive_upload_to_drive |
17 | 17 | from file_automation.utils.executor.action_executor import execute_action, execute_files, add_command_to_executor |
18 | | -from file_automation.utils.json.json_file import read_action_json |
19 | 18 | from file_automation.utils.file_process.get_dir_file_list import get_dir_files_as_list |
| 19 | +from file_automation.utils.json.json_file import read_action_json |
| 20 | +from file_automation.utils.project.create_project_structure import create_project_dir |
| 21 | + |
20 | 22 | __all__ = [ |
21 | 23 | "copy_file", "rename_file", "remove_file", "copy_all_file_to_dir", "copy_specify_extension_file", |
22 | 24 | "copy_dir", "create_dir", "remove_dir_tree", "zip_dir", "zip_file", "zip_info", |
|
25 | 27 | "drive_upload_dir_to_folder", "drive_upload_to_folder", "drive_upload_dir_to_drive", "drive_upload_to_drive", |
26 | 28 | "drive_add_folder", "drive_share_file_to_anyone", "drive_share_file_to_domain", "drive_share_file_to_user", |
27 | 29 | "drive_delete_file", "drive_download_file", "drive_download_file_from_folder", "execute_action", "execute_files", |
28 | | - "add_command_to_executor", "read_action_json", "get_dir_files_as_list" |
| 30 | + "add_command_to_executor", "read_action_json", "get_dir_files_as_list", "create_project_dir" |
29 | 31 | ] |
0 commit comments