Filezilla: How to refresh a FTP folder automatically

11

1

I'm using Filezilla to check if new files arrived in different folder on a FTP. But I always have to do a refresh of the folder manually with F5.

When I click on a folder that I already clicked before, the refresh is not done.

How can I enable Filezilla to always update(refresh) a folder when I click it?

FiveO

Posted 2012-11-16T15:30:57.580

Reputation: 7 940

What OS? Also are you just thinking like on a specific duration like every 2 seconds? – William – 2013-04-10T06:50:36.143

I'm on Windows 8. It does not need to be a automatic polling all x seconds, just when I click the folder manually, it should reload the content again - but it does not. – FiveO – 2013-04-10T06:54:12.943

I'm searching for an opposite wish, a caching version of Filezilla. What version you were using? – machineaddict – 2014-03-26T10:12:47.337

@machineaddict I'm using the most recent version. Please create a new question and ask for a caching FTP client... – FiveO – 2014-04-03T14:55:57.340

Answers

7

With FileZilla 3, this isn't possible. Ticket #8111 is an open feature request that asks for an option to disable the caching of the directory listing.

You have two options:

  • Install FileZilla 2.2.32.

    Disabling the directory cache is straightforward in FileZilla 2:

    screenshot

  • If downgrading is not an option, you can download, modify and compile the source code.

    The modification is easy. The file src/engine/directorycache.h of the FileZilla 3.5.3 source code contains the following:

    /*
    This class is the directory cache used to store retrieved directory listings
    for further use.
    Directory get either purged from the cache if the maximum cache time exceeds,
    or on possible data inconsistencies.
    [...]
    */
    
    const int CACHE_TIMEOUT = 1800; // In seconds
    

    As you can see, the default timeout is 1800 seconds (30 minutes). Setting the timeout to zero should disable the directory cache.

    Compiling is a lot more difficult. The official tutorial Compiling FileZilla 3 under Windows explains how.

Dennis

Posted 2012-11-16T15:30:57.580

Reputation: 42 934

13 years old and this still hasn't been done? – Devil's Advocate – 2015-06-18T13:22:24.050

1now 5 years... SMH – yobddigi – 2017-11-06T10:45:48.450

6 years and counting – Sander de Jong – 2019-01-14T10:05:03.307

I am using 3.42.1 in May 2019 which is the latest version and I still see the directory cache issue for remote files, pathetic service provider – Hansiemithun – 2019-05-11T06:44:13.100

*8 years!* (@Hansiemithun - but I'm sure there's non-free alternatives if this minor inconvenience is unbearable) ;) – ashleedawg – 2020-02-17T14:56:04.350