Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
master_project_JLU2018/bin/3.1_create_gtf/Modules/Ensembl/FTPHandling/FTPEntry.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
28 lines (21 sloc)
632 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ftplib | |
class FTPEntry: | |
""" | |
Class to determine if a ftp-path is file or directory. | |
""" | |
def __init__(self, filename, ftpobj, startingdir=None): | |
self.filename = filename | |
if startingdir is None: | |
startingdir = ftpobj.pwd() | |
try: | |
ftpobj.cwd(filename) | |
self.filetype = 'd' | |
ftpobj.cwd(startingdir) | |
except ftplib.error_perm: | |
self.filetype = 'f' | |
def gettype(self): | |
return self.filetype | |
def getfilename(self): | |
return self.filename | |
def __repr__(self): | |
return self.filename, self.filetype |