How can I list all files in a folder which are modified more than 30 days ago? #1670
Answered
by
AB1908
wealthychef1
asked this question in
Q&A
-
Hello ## Neglected projects
```dataviewjs
dv.table(["Project", "Modified"], dv.pages('"Projects"').where(p => p.file.mtime <
dv.date("30 days ago") ).map(p => [p.file.link, p.file.mtime]))
``` Thanks for any help! |
Beta Was this translation helpful? Give feedback.
Answered by
AB1908
Dec 25, 2022
Replies: 1 comment 4 replies
-
Why do you need JS?
|
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
wealthychef1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Why do you need JS?
table file.name from "source" where file.mtime < date(today) - dur(30 days)