PISD - mkdir, remove, copy to/from remote

git-svn-id: svn://db.shs.com.ru/pip@89 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5
This commit is contained in:
2015-04-09 12:28:26 +00:00
parent c567be27ff
commit b82453d845
4 changed files with 56 additions and 13 deletions

View File

@@ -294,7 +294,7 @@ PIVector<PIFile::FileInfo> PIDir::allEntries() {
if (de.name() == "." || de.name() == "..") continue;
if (de.isSymbolicLink()) continue; /// TODO: resolve symlinks
if (de.isDir()) {
dirs.push_front(de);
dirs << de;
ndirs << de.path;
} else ret << de;
}