Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 50197
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T16:33:20+00:00 2026-05-10T16:33:20+00:00

You can use ftplib for full FTP support in Python. However the preferred way

  • 0

You can use ftplib for full FTP support in Python. However the preferred way of getting a directory listing is:

# File: ftplib-example-1.py  import ftplib  ftp = ftplib.FTP('www.python.org') ftp.login('anonymous', 'ftplib-example-1')  data = []  ftp.dir(data.append)  ftp.quit()  for line in data:     print '-', line 

Which yields:

$ python ftplib-example-1.py - total 34 - drwxrwxr-x  11 root     4127         512 Sep 14 14:18 . - drwxrwxr-x  11 root     4127         512 Sep 14 14:18 .. - drwxrwxr-x   2 root     4127         512 Sep 13 15:18 RCS - lrwxrwxrwx   1 root     bin           11 Jun 29 14:34 README -> welcome.msg - drwxr-xr-x   3 root     wheel        512 May 19  1998 bin - drwxr-sr-x   3 root     1400         512 Jun  9  1997 dev - drwxrwxr--   2 root     4127         512 Feb  8  1998 dup - drwxr-xr-x   3 root     wheel        512 May 19  1998 etc ... 

I guess the idea is to parse the results to get the directory listing. However this listing is directly dependent on the FTP server’s way of formatting the list. It would be very messy to write code for this having to anticipate all the different ways FTP servers might format this list.

Is there a portable way to get an array filled with the directory listing?

(The array should only have the folder names.)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T16:33:21+00:00Added an answer on May 10, 2026 at 4:33 pm

    Try using ftp.nlst(dir).

    However, note that if the folder is empty, it might throw an error:

    files = []  try:     files = ftp.nlst() except ftplib.error_perm as resp:     if str(resp) == "550 No files found":         print "No files in this directory"     else:         raise  for f in files:     print f 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 61k
  • Answers 61k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Don't try to persist the connection at all. Instantiate it… May 11, 2026 at 9:42 am
  • added an answer You can read a bit about it in 6.4.17 ('printf'… May 11, 2026 at 9:42 am
  • added an answer The ReSharper (jetbrains) is a nice plugin enhancing the VisualStudio.… May 11, 2026 at 9:41 am

Related Questions

You can use ftplib for full FTP support in Python. However the preferred way
You can use more than one css class in an HTML tag in current
You can use a standard dot notation or a method call in Objective-C to
You can use SelectFolder() to get a folder or GetOpenFolderitem(filter as string) to get
You can use App.config; but it only supports key/value pairs. You can use .Net
You can use XPath if you're binding the XML document in the XAML, but
You can use command lsof to get file descriptors for all running processes, but
In python you can use a tuple in a formatted print statement and the
In SQL Server you can use the IsNull() function to check if a value
In the Ajax toolkit you can use a Tab Container and add TabPanels to

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.