Metadata-Version: 2.1
Name: winuserfolder
Version: 0.10
Summary: Makes it easier to access Documents/Pictures/Desktop/Music/Videos/Downloads
Home-page: https://github.com/hansalemaos/winuserfolder
Author: Johannes Fischer
Author-email: <aulasparticularesdealemaosp@gmail.com>
License: MIT
Keywords: windows,user
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Editors :: Text Processing
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Text Processing :: Indexing
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE.rst


# Makes it easier to access Documents/Pictures/Desktop/Music/Videos/Downloads

```python

from winuserfolder import *

print(get_desktop_folder_path())
print(get_documents_folder_path())
print(get_downloads_folder_path())
print(get_music_folder_path())
print(get_pictures_folder_path())
print(get_videos_folder_path())
a = create_folder_in_documents_folder("00testestest")
b = create_folder_in_pictures_folder("00testestest")
c = create_folder_in_desktop_folder("00testestest")
d = create_folder_in_music_folder("00testestest")
e = create_folder_in_videos_folder("00testestest")
f = create_folder_in_downloads_folder("00testestest")
a1 = touch_file_in_documents_folder(relative_path="00testestest\\xxx\\myfile.txt")
b1 = touch_file_in_pictures_folder(relative_path="00testestest\\xxx\\myfile.txt")
c1 = touch_file_in_desktop_folder(relative_path="00testestest\\xxx\\myfile.txt")
d1 = touch_file_in_music_folder(relative_path="00testestest\\xxx\\myfile.txt")
e1 = touch_file_in_videos_folder(relative_path="00testestest\\xxx\\myfile.txt")
f1 = touch_file_in_downloads_folder(relative_path="00testestest\\xxx\\myfile.txt")

    
```




