Offers special IO functions such as the recursive creation of a list of files in a folder, taking into account file extensions or properties.
Project description
agm_io_utils
This package provides some more complex functions e.g. for looking for files and creating unique filenames.
Install:
pip install agm_io_utils
Example 1:
from agm_io_utils import io_utils
p = r"C:\Users\micro\OneDrive\Dokumente"
result_list = io_utils.get_all_files_recursively_from_path(path=p,
file_extensions=[".xmind"],
not_allowed_in_files_name_list=["test", "optional"],
not_allowed_in_path_string_list=["duplicate"],
must_be_a_part_of_files_name_list=["python"])
for file_name in result_list:
print(file_name)
Output:
2 files found in folder 'C:\Users\micro\OneDrive\Dokumente'
C:\Users\micro\OneDrive\Dokumente\Python.xmind
C:\Users\micro\OneDrive\Dokumente\wmr\Wissen\Python.xmind
Example 2:
Explanation: Sometimes you get a path to a file through user input. Now the following has to be done:
- Check whether the file type specified by the user is actually the correct one (e.g. '.txt')
- Test whether the file actually exists
- To save the original file from being changed, find a new file name for the target file.
A postfix can either be appended here or, if no postfix is specified, a time stamp is automatically appended. In any case, it must be ensured that the target file does not yet exist in the file system. If so, count up the file name with an additional index.
from agm_io_utils import io_utils
path_to_file = r"C:\Users\micro\OneDrive\Dokumente\clean_this_xminds.txt"
new_filename = io_utils.check_path_and_return_new_file_name_with_postfix(path=path_to_file, extension="txt", postfix="tested")
print(new_filename)
Output:
C:\Users\micro\OneDrive\Dokumente\clean_this_xminds_tested_06.txt
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
agm_io_utils-0.0.6.tar.gz
(4.1 kB
view details)
Built Distribution
File details
Details for the file agm_io_utils-0.0.6.tar.gz
.
File metadata
- Download URL: agm_io_utils-0.0.6.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a69f05953b1b78cd83b220166d175327e736bac9c22d3251bc962baddb60afae |
|
MD5 | 714f81317efccdd9e239efe7ea323330 |
|
BLAKE2b-256 | a495dbbd6781c9c72dee8ff4faab0d3b7e0b2b1f606b2afb6b030fda20a9d8d3 |
File details
Details for the file agm_io_utils-0.0.6-py3-none-any.whl
.
File metadata
- Download URL: agm_io_utils-0.0.6-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e47d952ee7b8e2b1b10da16044022a4b6fd30f938900ee332024aa36316941cf |
|
MD5 | 03d56861870a697cb21ef60bef7a2d1f |
|
BLAKE2b-256 | 9faf2e2c8bf69339297599273efe9c1ad9ffddae91958d68f7858f244323f68f |