Viewing more than 10,000 files on a FTP file server? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T22:57:12Zhttp://stackoverflow.com/feeds/question/383977http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/383977/viewing-more-than-10-000-files-on-a-ftp-file-server1Viewing more than 10,000 files on a FTP file server?Gary Willoughby2008-12-21T01:26:14Z2009-08-10T02:41:50Z
<p>I've queued up over 10,000 files to be uploaded to a UNIX based FTP server using a freeware (Windows based) FTP client which as far as i can see has finished without error.</p>
<p>Now, when i view the remote directory (using the Windows software) the output is truncated to 10,000 filenames. This ever occurs when i use the Windows command line FTP tool. Is there a way i can see more than this limit using another piece of software? I just need to confirm all files where indeed uploaded.</p>
<p>Any ideas?</p>
<p>Any information regarding this limit is very welcome.</p>
http://stackoverflow.com/questions/383977/viewing-more-than-10-000-files-on-a-ftp-file-server/383989#3839896Answer by bruceatk for Viewing more than 10,000 files on a FTP file server?bruceatk2008-12-21T01:42:16Z2009-02-05T17:06:15Z<p>Please provide more information like specific OS and version. Also please list the names and versions of the ftp clients that you are using when you experience the problem.</p>
<p>A lot of files in a single directory can cause many programs to have problems. I would recommend reducing the number of files in a folder, by putting them in several folders. </p>
<p>The FTP client that you are using probably has an option to look at the raw log and you should be able to use that to determine if it's a problem with the server or your client. The clients could be using a slightly different method to retrieve the list of files. </p>
<p>The story is in the logs. </p>
http://stackoverflow.com/questions/383977/viewing-more-than-10-000-files-on-a-ftp-file-server/383993#3839930Answer by Ant P for Viewing more than 10,000 files on a FTP file server?Ant P2008-12-21T01:47:42Z2008-12-21T01:47:42Z<p>Sounds like the limit is in the server software. Have you tried changing that?</p>
<p>Just out of curiosity I did a quick check on google for "ftp 10000 file limit", which turns up a heap of results but nothing obvious relating to this unfortunately...</p>
http://stackoverflow.com/questions/383977/viewing-more-than-10-000-files-on-a-ftp-file-server/383996#3839961Answer by da5id for Viewing more than 10,000 files on a FTP file server?da5id2008-12-21T01:50:24Z2008-12-21T01:50:24Z<p>If all you need to do is check the files all uploaded, then why not just try to download the last one?</p>
http://stackoverflow.com/questions/383977/viewing-more-than-10-000-files-on-a-ftp-file-server/384008#3840080Answer by le dorfier for Viewing more than 10,000 files on a FTP file server?le dorfier2008-12-21T02:10:09Z2008-12-21T02:10:09Z<p>You should be able to get to the raw FTP interface or somehow otherwise be able to submit single ftp commands directly. If you can, <a href="http://technet.microsoft.com/en-us/library/bb490645.aspx" rel="nofollow">this list</a> gives you some options. . (It's a windows list, but unix should be no worse. The following uses unix ftp commands as best I recall.) The bang (!) is supposed to drop you to a cmd prompt (I'm sure there are security issues involved. If you can somehow "ls | wc" you'll have a count, or perhaps you can "ls" to a file you can ftp back with the file list.</p>
http://stackoverflow.com/questions/383977/viewing-more-than-10-000-files-on-a-ftp-file-server/384046#3840460Answer by Unkwntech for Viewing more than 10,000 files on a FTP file server?Unkwntech2008-12-21T03:10:46Z2008-12-21T03:10:46Z<p>If you have shell/rd access just (ls -al|dir) > filename then do a diff on that file and a similar file from your local machine.</p>
http://stackoverflow.com/questions/383977/viewing-more-than-10-000-files-on-a-ftp-file-server/384055#3840553Answer by Norman Ramsey for Viewing more than 10,000 files on a FTP file server?Norman Ramsey2008-12-21T03:25:21Z2008-12-21T03:25:21Z<p>I just created 11,000 files on an FTP server I have access to and then used Firefox to display the directory with a URL beginning <code>ftp://hostname/pub/...</code>. Firefox displays all 11,000 files just fine.</p>
http://stackoverflow.com/questions/383977/viewing-more-than-10-000-files-on-a-ftp-file-server/384099#3840991Answer by David for Viewing more than 10,000 files on a FTP file server?David2008-12-21T04:39:24Z2008-12-21T04:39:24Z<p>What software is the server running for ftp? If its vsftp, then you might be reaching shell/kernel limits and not the ftp server limits. Also 10K is a tad to much for one directory, seriously might want to consider doing directory spanning ( /1-3 characters of file/4-5 characters of filename/fullname.suffix As long as its consistent, this will make it a lot more manageable to find files.</p>
http://stackoverflow.com/questions/383977/viewing-more-than-10-000-files-on-a-ftp-file-server/422135#4221350Answer by alex for Viewing more than 10,000 files on a FTP file server?alex2009-01-07T21:17:46Z2009-01-07T21:17:46Z<p>You can run <a href="http://www.crossftp.com/" rel="nofollow">CrossFTP client</a>, and choose Tools -> Synchornize Directory to compare your local folder and the remote folder. If there is any files missing, you can easily find them.</p>
<p>Some FTP Servers will truncate the file list if it is too big, for example, ProFTPd. You need to check the FTP log message to make sure there is no truncate on the server side as well.</p>
http://stackoverflow.com/questions/383977/viewing-more-than-10-000-files-on-a-ftp-file-server/1252912#12529120Answer by Tutul for Viewing more than 10,000 files on a FTP file server?Tutul2009-08-10T02:41:50Z2009-08-10T02:41:50Z<p>If your unix host supports sftp(most modern ones does) then you should use it, winscp is a free sftp client for windows. You can use it to view/synchronize local&remote directories. It will securely transfer all files with encryption and hash checking</p>