Metadata-Version: 2.1
Name: nr.fs
Version: 1.6.1
Summary: Filesystem and path manipulation tools.
Home-page: https://git.niklasrosenstein.com/NiklasRosenstein/nr-python-libs
Author: Niklas Rosenstein
Author-email: rosensteinniklas@gmail.com
License: MIT
Description: # `nr.fs`
        
        &ndash; Filesystem and path manipulation tools.
        
        > Note: To use the `nr.fs.glob()` function, you need the [glob2] module
        > installed. It is not listed an install requirement to this module.
        
          [glob2]: https://pypi.org/project/glob2/
        
        ### Changes
        
        #### v1.6.0 (2020-02-24)
        
        * Change how a case-sensitive filesystem is detected (using `sys.executable`,
          uppercasing and `os.path.isfile()`)
        * Add `ischild()`
        * Add `samefile()` (from `shutil.move()` in Python 3.5)
        * Add `move()` (from `shutil.move()` in Python 3.5)
        * Add `atomic_file.discard()`
        * Add `atomic_file.dispatch()`
        * Change `atomic_file.__enter__()`, now returns `self` instead of wrapped `tempfile`
        
        #### v1.5.0 (2019-09-27)
        
        * Add `mode` argument to `nr.fs.listdir()`
        * Add `nr.fs.atomic_file` class
        * Alias `os.rename` as `nr.fs.rename`
        
        #### v1.4.0 (2019-04-16)
        
        * Add `nr.fs.remove()` function
        
        #### v1.3.0 (2019-04-16)
        
        * Use `pkgutil` instead of `pkg_resources` namespace packages
        
        #### v1.2.0 (2019-04-16)
        
        * Fix `tempfile.closed`
        
        #### v1.1.1 (2018-08-21)
        
        * Fix `issub()` and add `at_curr=True` parameter
        
        #### v1.1.0 (2018-08-18)
        
        * Add `compare_all_timestamps()` function
        * Add `mtime_consistent_file` class
        
        #### v1.0.3 (2018-08-06)
        
        * Fix `NameError` on platforms where `os.name != 'nt'`
        
        #### v1.0.2 (2018-07-14)
        
        * Changed `get_long_path_name()` is now an alias for `fixcase()`
          (backwards compatibility until 1.1.0)
        * Changed `canonical()` so that it invokes `fixcase()` on case-insensitive
          filesystems
        * When `tempfile(encoding)` parameter was not specified, its `encoding`
          property will still return the applied text file encoding after it
          has been opened
        * Add `fixcase()` as replacement for `get_long_path_name()`
        * Add `tempfile.encoding` property
        * Add `listdir()`
        
        #### v1.0.1 (2018-07-05)
        
        * Add `nr.fs.isfile_cs()`
        * Add `nr.fs.get_long_path_name()`
        * Add `namespace_packages` parameter in `setup.py`
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
