bhargavnova / python-helper-modules

MIT License
7 stars 24 forks source link

Get List of Recently Accessed Files #62

Closed bhargavnova closed 8 months ago

bhargavnova commented 8 months ago

Objective:

Develop a Python script that retrieves a list of recently accessed files on the local system.

Features:

Example Usage:

# Example usage of the script to get recently accessed files
import recently_accessed_files

# Retrieve list of recently accessed files
recently_accessed_files.get_recently_accessed_files()

Difficulty: Beginner/Intermediate

Tags: Python, File Handling, Scripting

Additional Information:

Contribution Guidelines

The updated guidelines can be found here.

Note:

onkar-kota commented 8 months ago

Hi @bhargavnova in this issue ... we have to access list of files from specific directory or system-wide?

bhargavnova commented 8 months ago

@onkar-kota,

Well, that will be efficient when it's systemwide, but that will involve more complex code because systems have lots of files. let's aim for a directory now, because the whole system is itself a directory. time to get that list will increase if directory size/I mean file count increases,

so work like aiming for the directory, if you want I can assign this one to you.

onkar-kota commented 8 months ago

@bhargavnova Yeah, that's true... the code will be bit more complex. Yes, assign me I'll try to resolve this issue

bhargavnova commented 8 months ago

cool! happy coding!

onkar-kota commented 8 months ago

Hey @bhargavnova please check my PR #67