Changeset 186
- Timestamp:
- 2002-04-03 22:05:59 (7 years ago)
- Files:
-
- trunk/ftputil.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ftputil.txt
r177 r186 48 48 ParserError(FTPOSError) 49 49 FTPIOError(FTPError) 50 RootDirError(FTPError) 50 51 51 52 FTPError is the root of the exception hierarchy of the module. … … 126 127 codes aren't the same.) 127 128 129 RootDirError is a special case. Due to the implementation of the 130 lstat method it is not possible to do a stat on the root directory /. 131 If you know _any_ way to do it, please let me know. :-) 132 128 133 ---------------------------------------------------------------------- 129 134 FTPHost OBJECTS … … 260 265 - Links can only be recognized on servers that provide this 261 266 information in the DIR output. 262 267 263 268 - Items that can't be determined at all, are set to None. 269 270 - There's a special problem with stat'ing the root directory. In 271 this case, a RootDirError is raised. This has to do with the 272 algorithm used by (l)stat and a know of no one which solves 273 this problem. 264 274 265 275 Currently, ftputil recognizes the MS Robin FTP server. Otherwise, … … 333 343 below-mentioned email address. 334 344 345 - Due to the implementation of lstat it can not return a sensible 346 value for the root directory /. If you know an implementation that 347 can do this, please let me know. The root directory is handled 348 appropriately in FTPHost.path.exists/isfile/isdir/islink, though. 349 335 350 - Depending on local time and/or daylight saving time settings 336 351 different local hosts may interpret the modification times in the … … 360 375 ftputil.py 361 376 is the main module file. 362 377 363 378 UserTuple.py 364 379 may be used as the base class for _Stat. If you have at least
