Serve view of directory's most recent files onlyServe files over USBAn efficient filter for .sql files with...
Why did some Apollo missions carry a grenade launcher?
Why are we moving in circles with a tandem kayak?
My employer is refusing to give me the pay that was advertised after an internal job move
Was Donald Trump at ground zero helping out on 9-11?
Should I put my name first, or last in the team members list
Circle symbol compatible with square and triangle
What are these bugs on my milkweed?
Would people understand me speaking German all over Europe?
Correct word for a little toy that always stands up?
Bouncing map back into its bounds, after user dragged it out
Embedded C - Most elegant way to insert a delay
Why does the Rust compiler not optimize code assuming that two mutable references cannot alias?
What is my clock telling me to do?
"Valet parking " or "parking valet"
What are the cons of stateless password generators?
Move arrows along a contour
Patio gate not at right angle to the house
Should I intervene when a colleague in a different department makes students run laps as part of their grade?
How to prevent a single-element caster from being useless against immune foes?
How can I convert a linear narrative into a branching narrative?
Raindrops in Python
How to innovate in OR
Is it unprofessional to mention your cover letter and resume are best viewed in Chrome?
What language is Raven using for her attack in the new 52?
Serve view of directory's most recent files only
Serve files over USBAn efficient filter for .sql files with just “INSERT INTO”What is the most high-performance Linux filesystem for storing a lot of small files (HDD, not SSD)?aufs with lower writable branchForcing owner on created files and foldersMultiple questions about mounting multiple partitions (in Ubuntu 14.10)How can I transparently cache any directory or mounted file system for reads and write back?Are you allowed to modify the backing directory of “bindfs”?Is `bindfs --mirror=user1:user2:…` broken, because of the FUSE metadata cache?Can user space programs provide/implement sysfs or procfs files to pass data to and from a program?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I have a directory with ~100k files that loads very slowly over the internet through most protocols (just listing the directory can time out). I'd like to speed things up by only showing files from the last 6 months.
Is there a way to achieve this? I know there are a few FUSE-based filesystems able to filter by filename (eg rofs-filtered), but I haven't found one that can filter by date. The goal is to serve the directory through a HTTP file server like dockerized Nextcloud or File Browser, while being able to view the full directory on LAN in conditions when it's fast enough.
I've checked https://github.com/libfuse/libfuse/wiki/Filesystems
I've thought about a union mount of two directories (one with old files and one with new files), with a script on CRON to move the files periodically, but this is a round-about way with added complexity.
filesystems mount fuse file-sharing filter
New contributor
bamboo77 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I have a directory with ~100k files that loads very slowly over the internet through most protocols (just listing the directory can time out). I'd like to speed things up by only showing files from the last 6 months.
Is there a way to achieve this? I know there are a few FUSE-based filesystems able to filter by filename (eg rofs-filtered), but I haven't found one that can filter by date. The goal is to serve the directory through a HTTP file server like dockerized Nextcloud or File Browser, while being able to view the full directory on LAN in conditions when it's fast enough.
I've checked https://github.com/libfuse/libfuse/wiki/Filesystems
I've thought about a union mount of two directories (one with old files and one with new files), with a script on CRON to move the files periodically, but this is a round-about way with added complexity.
filesystems mount fuse file-sharing filter
New contributor
bamboo77 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I have a directory with ~100k files that loads very slowly over the internet through most protocols (just listing the directory can time out). I'd like to speed things up by only showing files from the last 6 months.
Is there a way to achieve this? I know there are a few FUSE-based filesystems able to filter by filename (eg rofs-filtered), but I haven't found one that can filter by date. The goal is to serve the directory through a HTTP file server like dockerized Nextcloud or File Browser, while being able to view the full directory on LAN in conditions when it's fast enough.
I've checked https://github.com/libfuse/libfuse/wiki/Filesystems
I've thought about a union mount of two directories (one with old files and one with new files), with a script on CRON to move the files periodically, but this is a round-about way with added complexity.
filesystems mount fuse file-sharing filter
New contributor
bamboo77 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I have a directory with ~100k files that loads very slowly over the internet through most protocols (just listing the directory can time out). I'd like to speed things up by only showing files from the last 6 months.
Is there a way to achieve this? I know there are a few FUSE-based filesystems able to filter by filename (eg rofs-filtered), but I haven't found one that can filter by date. The goal is to serve the directory through a HTTP file server like dockerized Nextcloud or File Browser, while being able to view the full directory on LAN in conditions when it's fast enough.
I've checked https://github.com/libfuse/libfuse/wiki/Filesystems
I've thought about a union mount of two directories (one with old files and one with new files), with a script on CRON to move the files periodically, but this is a round-about way with added complexity.
filesystems mount fuse file-sharing filter
filesystems mount fuse file-sharing filter
New contributor
bamboo77 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
bamboo77 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
bamboo77 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 21 mins ago
bamboo77bamboo77
6
6
New contributor
bamboo77 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
bamboo77 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
bamboo77 is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f533252%2fserve-view-of-directorys-most-recent-files-only%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
bamboo77 is a new contributor. Be nice, and check out our Code of Conduct.
bamboo77 is a new contributor. Be nice, and check out our Code of Conduct.
bamboo77 is a new contributor. Be nice, and check out our Code of Conduct.
bamboo77 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f533252%2fserve-view-of-directorys-most-recent-files-only%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown