Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions file_automation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from file_automation.dir.dir_process import copy_dir, create_dir, rename_dir, remove_dir_tree
from file_automation.file.file_process import copy_file, rename_file, remove_file, \
copy_all_file_to_dir, copy_specify_extension_file
from file_automation.zip.zip_process import zip_dir, zip_file, zip_info, zip_file_info, set_zip_password, \
unzip_file, read_zip_file, unzip_all
from file_automation.local.file.file_process import copy_file, remove_file, rename_file, copy_specify_extension_file, \
copy_all_file_to_dir
from file_automation.local.dir.dir_process import copy_dir, rename_dir, create_dir, remove_dir_tree
from file_automation.local.zip.zip_process import zip_dir, zip_file, zip_info, zip_file_info, set_zip_password, \
read_zip_file, unzip_file, unzip_all

__all__ = [
"copy_file", "rename_file", "remove_file", "copy_all_file_to_dir", "copy_specify_extension_file",
"copy_dir", "create_dir", "copy_specify_extension_file", "remove_dir_tree",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
Empty file.
Empty file.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "automation_file_dev"
version = "0.0.2"
version = "0.0.4"
authors = [
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
]
Expand Down