Skip to main content

A Python library for cross-platform filesystem operations, providing classes for handling files and directories.

Project description

fsinfo

fsinfo is a Python library providing a high-level abstraction for working with filesystem paths, files, and directories in a cross-platform way. It simplifies file system operations like querying file attributes, manipulating directories, and handling files across Linux, macOS, and Windows.

Features

  • FileSystemInfo: A base class for handling common file system information retrieval such as creation, modification, and access times.
  • FileInfo: Extends FileSystemInfo for file-specific operations, including reading, writing, copying, and moving files.
  • DirectoryInfo: Extends FileSystemInfo for directory-specific operations, like listing contents, calculating directory size, and recursive deletion.

Usage

Working with Files

from YourPackageName.fileinfo import FileInfo 

file = FileInfo('/path/to/your/file.txt')
print(file.creation_time)
file.copy_to('/path/to/destination/file.txt', overwrite=True)

Working with Directories

from YourPackageName.directoryinfo import DirectoryInfo 

directory = DirectoryInfo('/path/to/your/directory')
print(directory.length)  # Total size of files in the directory

for  file_info  in  directory.get_files():
  print(file_info.name)

Contributing

Contributions are welcome! Please feel free to submit a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fsinfo-0.0.3.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

fsinfo-0.0.3-py3-none-any.whl (2.6 kB view details)

Uploaded Python 3

File details

Details for the file fsinfo-0.0.3.tar.gz.

File metadata

  • Download URL: fsinfo-0.0.3.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.7

File hashes

Hashes for fsinfo-0.0.3.tar.gz
Algorithm Hash digest
SHA256 ec980d2435b6c8220380d86eccf029980d54e1894b8f7849f0422635eaab45c2
MD5 2e092b17af4c2d87820ac2043d723def
BLAKE2b-256 552b69487023af43759e8f6a586e2a072103753f72cd13772f13341f8f95d3da

See more details on using hashes here.

File details

Details for the file fsinfo-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: fsinfo-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 2.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.7

File hashes

Hashes for fsinfo-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 0381396ee607f860eb58feac38b65e5aa17dbe744179b2e3cf33059306de5f10
MD5 9b87406ddf5b1861caaa77e76a0fd843
BLAKE2b-256 6c1dfd2ce9a38e0577d181421425eb0942b6d4526fd0c0744443f5193daa7ad3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page