Results 1 to 8 of 8

Thread: Finding files

  1. #1
    Join Date
    Jul 2011
    Beans
    7

    Question Finding files

    It seems that firefox caches files something like here:

    /home/<username>/.mozilla/firefox/<some-garbage-chars>.default/Cache
    .

    How would I search these directories for videos, like from youtube that are cached somewhere in there? I.e., like to find all mp4 files or all <insert-file-format> files.

    I'm not aware of any features of the 'find' command that allow me to interrogate the properties of files. Anyone know how to do this? Oh, and the file names do not have convenient extensions they're all named some 8 digit hex code like 9F94Fd01 or BB999d01.
    i.e. the files are not called thisisafile.jpg or hiimapngfile.png et cetera.

    Thanks

  2. #2
    Join Date
    Feb 2008
    Location
    Texas
    Beans
    29,807
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Finding files

    Quote Originally Posted by cheeseits View Post
    It seems that firefox caches files something like here:

    /home/<username>/.mozilla/firefox/<some-garbage-chars>.default/Cache
    .

    How would I search these directories for videos, like from youtube that are cached somewhere in there? I.e., like to find all mp4 files or all <insert-file-format> files.

    I'm not aware of any features of the 'find' command that allow me to interrogate the properties of files. Anyone know how to do this? Oh, and the file names do not have convenient extensions they're all named some 8 digit hex code like 9F94Fd01 or BB999d01.
    i.e. the files are not called thisisafile.jpg or hiimapngfile.png et cetera.

    Thanks
    Hi, as far as youtube videos my understanding is that it is not allowed so the feature has been removed from the flash player that allowed that in previous ubuntu versions. Also I believe it is against forum policy to talk about those particular files.
    Last edited by wildmanne39; July 11th, 2011 at 06:58 AM. Reason: Add more text

  3. #3
    Join Date
    Jul 2011
    Beans
    7

    Question Re: Finding files

    What do you mean 'not allowed'? Not allowed by whom? How does that work anyway, it plays on my computer so how do they disable it? By 'those particular files' you mean the Cache folder? And if so again, what is the reason?

    Thanks

  4. #4
    Join Date
    Dec 2008
    Location
    43° 7' 41" 131° 54' 3"
    Beans
    Hidden!

    Re: Finding files

    Open Nautilus file manager and it will be opened in /home/<username> directory. Now the combination of keys Ctrl + h will allow you to view hidden files. These are the files with a "." in front of them. You can also go to Nautilus menu and select "View" and then "hidden files".Once these are viewable locate the .mozilla directory then inside will be the firefox directory then your profile folder (garbage-char). then the default directory and Cache directory inside that. There is no easy way to find these unless you use something like Flash Got and it's becoming more difficult to download these files as some of the host sites disallow.
    EasyBCD.
    PrintersDatabase
    Boot Info Script: How to
    The post above and the post below suffer from the Rashomon effect!

  5. #5
    Join Date
    Jul 2011
    Beans
    7

    Question Re: Finding files

    Fine, but I don't want to find these files in the file manager since their are ~1000 files here.
    example:

    PHP Code:
    ls -R 1>files.txt
    wc 
    -l 0<files.txt 
    gives about 3000
    and there's about 3 lines per file.

    Ok, so how would I play any flash files (in the cache folder previously referred to), they seem to give an error when I try to play them (as implied in previous posts here).


    HERE'S WHAT I WAS INITIALLY TRYING TO ASK:
    ---When I right click on a file and click on properties (ie alt-enter) a flash file will say:
    Type: Shackwave Flash file (application/x-shockwave-flash)
    Is that information available from the shell or not, and how would someone go to find an answer if their is one?

    Thanks

  6. #6
    Join Date
    Jul 2011
    Beans
    7

    Re: Finding files

    Ok, actually there is 715,

    Code:
    find . -type f 1>files.txt
    wc -l 0<files.txt
    but the point still remains, I want to interrogate the files from shell. Anyone know how?
    Last edited by cheeseits; July 11th, 2011 at 08:01 AM. Reason: typed some code incorrectly

  7. #7
    Join Date
    Dec 2008
    Location
    43° 7' 41" 131° 54' 3"
    Beans
    Hidden!

    Re: Finding files

    Those type of files used to be cached in the /tmp directory, but only while the web page was still open.....once closed they would disappear.Anything outside my /home directory I could play as root with Totem movie player. Once I moved the file and renamed it I could play it with VLC also. If you can find a way to search for these I would like to know also.BTW...these files stopped being cached in my /tmp directory and could only be downloaded with FlashGot to any folder I designated. Not all of these movies, music can be linked to download. It is something inherent in the web page that prevents it.
    EasyBCD.
    PrintersDatabase
    Boot Info Script: How to
    The post above and the post below suffer from the Rashomon effect!

  8. #8
    Join Date
    Jan 2008
    Location
    Manchester UK
    Beans
    13,573
    Distro
    Ubuntu

    Re: Finding files

    Code:
    f="$(ls -l  /proc/$(pgrep -f flashplayer)/fd | grep deleted)" && f="${f##*:+([0-9]) }" && f="${f%% -*}" && echo /proc/$(pgrep -f flashplayer)/fd/"$f"
    That will tell you which file it is, but it is against youtubes terms and conditions to copy it to your hard drive.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •