Page size of file manager?
Hi all,
I got problem with folder have than 100,000 files. I want using file manager in Cpanel to delete old file between specific period time but my browser always show not responding.
Some one can help me how to limit files show on file manager or other solutions for this?
Thanks
-
@ goasiatravel, Yes, its not possible to view via browser. It seem's you don't have root access. So, ask your prvoider for further assistance. 0 -
it's bad idea to do this through web browser. it's better to do it through shell. This will give you list of files, which are older than 30 days. find /path/to/big/folder -type f -mtime +30
This will delete files, which are older than 30 days. find /path/to/big/folder -type f -mtime +30 -exec rm -f {} \;0 -
Hello :) Yes, as mentioned, it's likely a better idea to delete these files via the command line (SSH) or through FTP. You may experience memory limitations when attempting to load that many files via File Manager. Thank you. 0
Please sign in to leave a comment.
Comments
3 comments