Skip to content

Instantly share code, notes, and snippets.

@frankmeeuwsen
Created January 21, 2024 10:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frankmeeuwsen/0d0e6c7d0fb18f33b5b85f8f1851888b to your computer and use it in GitHub Desktop.
Save frankmeeuwsen/0d0e6c7d0fb18f33b5b85f8f1851888b to your computer and use it in GitHub Desktop.
Dataview to get a list of files that are updated in the last 7 days
```dataview
TABLE file.name, file.ctime AS "Created"
WHERE file.ctime >= date(<% tp.date.now("YYYY-MM-DD", -7) %>) and file.ctime < date(<% tp.date.now("YYYY-MM-DD") %>)
sort file.ctime
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment