https://github.com/andrewpetrochenkov/touch.py
:open_file_folder: touch(path) - update the access and modification date of a path(s)
https://github.com/andrewpetrochenkov/touch.py
python
Last synced: 3 months ago
JSON representation
:open_file_folder: touch(path) - update the access and modification date of a path(s)
- Host: GitHub
- URL: https://github.com/andrewpetrochenkov/touch.py
- Owner: andrewpetrochenkov
- License: unlicense
- Created: 2015-09-20T06:35:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-12-03T21:28:09.000Z (over 4 years ago)
- Last Synced: 2025-02-26T09:42:01.642Z (3 months ago)
- Topics: python
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://pypi.org/project/touch/)
[](https://unlicense.org/)
[](https://github.com/andrewp-as-is/touch.py/actions)### Installation
```bash
$ [sudo] pip install touch
```#### Examples
```python
>>> import touch
>>> touch.touch("path/to/file")
>>> touch.touch(["path/to/file1","path/to/file2"])
```