| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- Metadata-Version: 2.1
- Name: win32_setctime
- Version: 1.2.0
- Summary: A small Python utility to set file creation time on Windows
- Home-page: https://github.com/Delgan/win32-setctime
- Download-URL: https://github.com/Delgan/win32-setctime/archive/1.2.0.tar.gz
- Author: Delgan
- Author-email: delgan.py@gmail.com
- License: MIT license
- Keywords: win32,windows,filesystem,filetime
- Classifier: Development Status :: 5 - Production/Stable
- Classifier: Topic :: System :: Filesystems
- Classifier: Intended Audience :: Developers
- Classifier: Environment :: Win32 (MS Windows)
- Classifier: Natural Language :: English
- Classifier: License :: OSI Approved :: MIT License
- Classifier: Operating System :: Microsoft
- Classifier: Programming Language :: Python
- Classifier: Programming Language :: Python :: 3
- Classifier: Programming Language :: Python :: 3.5
- Classifier: Programming Language :: Python :: 3.6
- Classifier: Programming Language :: Python :: 3.7
- Classifier: Programming Language :: Python :: 3.8
- Classifier: Programming Language :: Python :: 3.9
- Classifier: Programming Language :: Python :: 3.10
- Classifier: Programming Language :: Python :: 3.11
- Classifier: Programming Language :: Python :: 3.12
- Classifier: Programming Language :: Python :: 3.13
- Classifier: Programming Language :: Python :: 3 :: Only
- Classifier: Programming Language :: Python :: Implementation :: CPython
- Requires-Python: >=3.5
- Description-Content-Type: text/markdown
- License-File: LICENSE
- Provides-Extra: dev
- Requires-Dist: black>=19.3b0; python_version >= "3.6" and extra == "dev"
- Requires-Dist: pytest>=4.6.2; extra == "dev"
- # win32-setctime
- [](https://pypi.python.org/pypi/win32-setctime) [](https://pypi.python.org/pypi/win32-setctime) [](https://github.com/Delgan/win32-setctime/actions/workflows/tests.yml?query=branch:master) [](https://github.com/Delgan/win32-setctime/blob/master/LICENSE)
- A small Python utility to set file creation time on Windows.
- ## Installation
- ```shell
- pip install win32-setctime
- ```
- ## Usage
- ```python
- from win32_setctime import setctime
- setctime("my_file.txt", 1561675987.509, follow_symlinks=True)
- ```
|