(self, path)
| 119 | |
| 120 | # check if remote directory exists |
| 121 | def dir_exists(self, path): |
| 122 | str_recv = self.cmd('@PJL FSQUERY NAME="' + path + '"', True, False) |
| 123 | if re.search("TYPE=DIR", str_recv): |
| 124 | return True |
| 125 | |
| 126 | # check if remote file exists |
| 127 | def file_exists(self, path): |
no test coverage detected