Ticket #37 (closed defect: fixed)
Confusing behavior of isdir/isfile/islink when a path isn't found
| Reported by: | ftputiluser | Owned by: | schwa |
|---|---|---|---|
| Priority: | major | Milestone: | 2.4.1 |
| Component: | Documentation | Version: | |
| Keywords: | listdir, isdir, isfile, islink | Cc: |
Description
here an example
In [22]: host=ftputil.FTPHost('ftp.microsoft.com','anonymous','test@test.com')
In [23]: lista=host.listdir('/deskapps/games/public/archive_e3/DungeonSiege&FreeLancer/Dungeon Siege')
In [24]: lista
Out[24]:
['Chris Taylor .doc',
'Dungeon Siege Fact Sheet.doc',
'Logos',
'Screenshots',
'Sketches']
In [25]: for l in lista:
....: print host.path.isdir(l)
....: print host.path.isfile(l)
....: print host.path.islink(l)
....:
False
False
False
False
False
False
False
False
False
False
False
False
False
False
False
maybe the & in the pathname?
regards Nicola
Change History
Note: See
TracTickets for help on using
tickets.
